Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,746 for preset (1.18 sec)

  1. internal/s3select/select.go

    	switch s3Select.Output.format {
    	case csvFormat:
    		// Use bufio Writer to prevent csv.Writer from allocating a new buffer.
    		bufioWriter := bufioWriterPool.Get().(*bufio.Writer)
    		defer func() {
    			bufioWriter.Reset(xioutil.Discard)
    			bufioWriterPool.Put(bufioWriter)
    		}()
    
    		bufioWriter.Reset(buf)
    		opts := sql.WriteCSVOpts{
    			FieldDelimiter: []rune(s3Select.Output.CSVArgs.FieldDelimiter)[0],
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

        Log-Output -Fatal `
            ("GCE metadata server route is not present as expected.`n" +
             "$(Get-NetRoute -AddressFamily IPv4 | Out-String)")
      }
    }
    
    # Checks if the route to the GCE metadata server is present. Returns when the
    # route is NOT present or after a timeout has expired.
    function WaitFor_GceMetadataServerRouteToBeRemoved {
      $elapsed = 0
      $timeout = 60
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/testers/ConcurrentMapPutIfAbsentTester.java

      @MapFeature.Require(absent = SUPPORTS_PUT)
      @CollectionSize.Require(absent = ZERO)
      public void testPutIfAbsent_unsupportedPresentExistingValue() {
        try {
          assertEquals(
              "putIfAbsent(present, existingValue) should return present or throw",
              v0(),
              putIfAbsent(e0()));
        } catch (UnsupportedOperationException tolerated) {
        }
        expectUnchanged();
      }
    
      @MapFeature.Require(absent = SUPPORTS_PUT)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. docs/de/docs/how-to/configure-swagger-ui.md

    Die Swagger-Oberfläche erlaubt, dass andere Konfigurationen auch **JavaScript**-Objekte sein können (z. B. JavaScript-Funktionen).
    
    FastAPI umfasst auch diese Nur-JavaScript-`presets`-Einstellungen:
    
    ```JavaScript
    presets: [
        SwaggerUIBundle.presets.apis,
        SwaggerUIBundle.SwaggerUIStandalonePreset
    ]
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:17:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    - `dependencyConstraints`: optional. When missing the variant is assumed to have no dependency constraints. Must not be present when `available-at` is present.
    - `files`: optional. When missing the variant is assumed to have no files. Must not be present when `available-at` is present.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. src/runtime/race/testdata/time_test.go

    	<-c
    	v = 3
    }
    
    func TestNoRaceAfterFuncReset(_ *testing.T) {
    	v := 0
    	_ = v
    	c := make(chan int)
    	f := func() {
    		v = 1
    		c <- 0
    	}
    	t := time.AfterFunc(time.Hour, f)
    	t.Stop()
    	v = 2
    	t.Reset(1)
    	<-c
    	v = 3
    }
    
    func TestNoRaceTimer(_ *testing.T) {
    	v := 0
    	_ = v
    	c := make(chan int)
    	f := func() {
    		v = 1
    		c <- 0
    	}
    	v = 2
    	t := time.NewTimer(1)
    	go func() {
    		<-t.C
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:34:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/zip/ZipInputStreamUtil.java

            }
        }
    
        /**
         * {@link ZipInputStream#reset()}の例外処理をラップするメソッドです。
         *
         * @param zis
         *            {@link ZipInputStream}。{@literal null}であってはいけません
         * @see ZipInputStream#reset()
         */
        public static void reset(final ZipInputStream zis) {
            assertArgumentNotNull("zis", zis);
    
            try {
                zis.reset();
            } catch (final IOException e) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

        /**
         * Returns the value of this provider if it has a value present, otherwise throws {@code java.lang.IllegalStateException}.
         *
         * @return the current value of this provider.
         * @throws IllegalStateException if there is no value present
         */
        T get();
    
        /**
         * Returns the value of this provider if it has a value present. Returns {@code null} a value is not available.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    	for _, r := range rules {
    		chainTable := fmt.Sprintf("%s:%s", r.chain, r.table)
    		// Create new chain if key: `chainTable` isn't present in map
    		if !chainTableLookupSet.Contains(chainTable) {
    			// Ignore chain creation for built-in chains for iptables
    			if _, present := constants.BuiltInChainsMap[r.chain]; !present {
    				cmd := []string{"-t", r.table, "-N", r.chain}
    				output = append(output, cmd)
    				chainTableLookupSet.Insert(chainTable)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginConfig.java

     */
    @ServiceScope(Scope.BuildTree.class)
    public interface GradleEnterprisePluginConfig {
    
        enum BuildScanRequest {
            NONE, // no explicit request
            REQUESTED, // --scan is present, but not --no-scan
            SUPPRESSED // --no-scan is present
        }
    
        BuildScanRequest getBuildScanRequest();
    
        boolean isTaskExecutingBuild();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top