Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 500 for preset (0.12 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/MultiVersionIntegrationSpec.groovy

            if (version == null) {
                throw new IllegalStateException("No version present")
            }
            def m = version.toString() =~ CLASSIFIER_PATTERN
            VersionNumber.parse(m[0][1])
        }
    
        @Nullable
        static String getVersionClassifier() {
            if (version == null) {
                throw new IllegalStateException("No version present")
            }
            def m = version.toString() =~ CLASSIFIER_PATTERN
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKuromojiTokenizerFactory.java

            @Override
            public int read(final char[] cbuf, final int off, final int len) {
                throw new IllegalStateException("TokenStream contract violation: reset()/close() call missing, "
                        + "reset() called multiple times, or subclass does not call super.reset(). "
                        + "Please see Javadocs of TokenStream class for more information about the correct consuming workflow.");
            }
    
            @Override
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/authorizationconfig/metrics/metrics.go

    		legacyregistry.MustRegister(authorizationConfigAutomaticReloadLastTimestampSeconds)
    	})
    }
    
    func ResetMetricsForTest() {
    	authorizationConfigAutomaticReloadsTotal.Reset()
    	authorizationConfigAutomaticReloadLastTimestampSeconds.Reset()
    }
    
    func RecordAuthorizationConfigAutomaticReloadFailure(apiServerID string) {
    	apiServerIDHash := getHash(apiServerID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 13:20:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/build.gradle.kts

        api(libs.awsS3Core)
        api(libs.awsS3S3)
        api(libs.awsS3Kms) {
            because("Loaded by the AWS libraries with reflection when present")
        }
        api(libs.awsS3Sts) {
            because("Loaded by the AWS libraries with reflection when present: https://github.com/gradle/gradle/issues/15332")
        }
        api(libs.guava)
    
        implementation(projects.baseServices)
        implementation(project(":hashing"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleContextualExecuter.java

            }
            return super.ignoreCleanupAssertions();
        }
    
        @Override
        public GradleExecuter reset() {
            if (gradleExecuter != null) {
                gradleExecuter.reset();
            }
            return super.reset();
        }
    
        // The following overrides are here instead of in 'InProcessGradleExecuter' due to the way executors are layered+inherited
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:06:31 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	//
    	// This depends on the provided rcfg.LogWriter and the presence of
    	// dir.DebugDir, as follows:
    	//  1. If LogWriter is present, log to it.
    	//  2. If DebugDir is present, log to a file within it.
    	//  3. If both LogWriter and DebugDir are present, log to a multi writer.
    	//  4. If neither LogWriter nor DebugDir are present, log to a noop logger.
    	var logWriters []io.Writer
    	logFile, err := debugLogFile(dir.DebugDir())
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. docs/zh/docs/how-to/configure-swagger-ui.md

    ## JavaScript-only 配置
    
    Swagger UI 同样允许使用 **JavaScript-only** 配置对象(例如,JavaScript 函数)。
    
    FastAPI 包含这些 JavaScript-only 的 `presets` 设置:
    
    ```JavaScript
    presets: [
        SwaggerUIBundle.presets.apis,
        SwaggerUIBundle.SwaggerUIStandalonePreset
    ]
    ```
    
    这些是 **JavaScript** 对象,而不是字符串,所以你不能直接从 Python 代码中传递它们。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun May 05 21:34:13 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.s

    	MOVD function+0(FP), R0
    	MOVD chain+8(FP), R1
    	LMG  src+16(FP), R2, R3 // R2=base, R3=len
    
    continue:
    	WORD $0xB93E0002 // KIMD --, R2
    	BVS  continue    // continue if interrupted
    	MOVD $0, R0      // reset R0 for pre-go1.8 compilers
    	RET
    
    // func klmd(function code, chain *[200]byte, dst, src []byte)
    TEXT ·klmd(SB), NOFRAME|NOSPLIT, $0-64
    	// TODO: SHAKE support
    	MOVD function+0(FP), R0
    	MOVD chain+8(FP), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 957 bytes
    - Viewed (0)
  9. src/internal/trace/base.go

    		return
    	}
    	if int(minID) > len(d.sparse) {
    		return
    	}
    	size := int(maxID) + 1
    	d.present = make([]uint8, (size+7)/8)
    	d.dense = make([]E, size)
    	for id, data := range d.sparse {
    		d.dense[id] = data
    		d.present[id/8] |= uint8(1) << (id % 8)
    	}
    	d.sparse = nil
    }
    
    // get returns the E for id or false if it doesn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/hash/fnv/fnv.go

    	s[0] = offset128Higher
    	s[1] = offset128Lower
    	return &s
    }
    
    func (s *sum32) Reset()   { *s = offset32 }
    func (s *sum32a) Reset()  { *s = offset32 }
    func (s *sum64) Reset()   { *s = offset64 }
    func (s *sum64a) Reset()  { *s = offset64 }
    func (s *sum128) Reset()  { s[0] = offset128Higher; s[1] = offset128Lower }
    func (s *sum128a) Reset() { s[0] = offset128Higher; s[1] = offset128Lower }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top