Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for tmpused (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    		return nil, fmt.Errorf("error while parsing file: %w", err)
    	}
    
    	transformers, kmsHealthChecks, kmsUsed, err := getTransformerOverridesAndKMSPluginHealthzCheckers(ctx, config, apiServerID)
    	if err != nil {
    		return nil, fmt.Errorf("error while building transformers: %w", err)
    	}
    
    	if reload || (kmsUsed.v2Used && !kmsUsed.v1Used) {
    		kmsHealthChecks = []healthz.HealthChecker{kmsHealthChecker(kmsHealthChecks)}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

    // Each matched pattern are rewritten by its quantized alternatives.
    //
    // Quantization method is determined by the `_quantization_method` attributes
    // attached to each quantizable units.
    //
    // Template constraints are imposed as follows:
    //
    // * `QuantizeOpT` should have only one operand.
    // * `DequantizeOpT` should have only one result.
    template <typename ConcreteT, typename QuantizeOpT, typename DequantizeOpT,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #           manner to JSP or MASON or PHP: anything within < % ... % > is a
    #           code block, anything else is sent as output, subject to the
    #           flow imposed by any code segments.
    #
    #        3. The "output" is a POSIX shell script, which has its own ideas about
    #           escaping with backslashes, so to get «\» you need to write «\\\\»
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Floats.java

          return "Floats.lexicographicalComparator()";
        }
      }
    
      /**
       * Sorts the elements of {@code array} in descending order.
       *
       * <p>Note that this method uses the total order imposed by {@link Float#compare}, which treats
       * all NaN values as equal and 0.0 as greater than -0.0.
       *
       * @since 23.1
       */
      public static void sortDescending(float[] array) {
        checkNotNull(array);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Floats.java

          return "Floats.lexicographicalComparator()";
        }
      }
    
      /**
       * Sorts the elements of {@code array} in descending order.
       *
       * <p>Note that this method uses the total order imposed by {@link Float#compare}, which treats
       * all NaN values as equal and 0.0 as greater than -0.0.
       *
       * @since 23.1
       */
      public static void sortDescending(float[] array) {
        checkNotNull(array);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/runtime/debug/garbage.go

    // the program crashes.
    // SetMaxStack returns the previous setting.
    // The initial setting is 1 GB on 64-bit systems, 250 MB on 32-bit systems.
    // There may be a system-imposed maximum stack limit regardless
    // of the value provided to SetMaxStack.
    //
    // SetMaxStack is useful mainly for limiting the damage done by
    // goroutines that enter an infinite recursion. It only limits future
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/Doubles.java

          return "Doubles.lexicographicalComparator()";
        }
      }
    
      /**
       * Sorts the elements of {@code array} in descending order.
       *
       * <p>Note that this method uses the total order imposed by {@link Double#compare}, which treats
       * all NaN values as equal and 0.0 as greater than -0.0.
       *
       * @since 23.1
       */
      public static void sortDescending(double[] array) {
        checkNotNull(array);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Doubles.java

          return "Doubles.lexicographicalComparator()";
        }
      }
    
      /**
       * Sorts the elements of {@code array} in descending order.
       *
       * <p>Note that this method uses the total order imposed by {@link Double#compare}, which treats
       * all NaN values as equal and 0.0 as greater than -0.0.
       *
       * @since 23.1
       */
      public static void sortDescending(double[] array) {
        checkNotNull(array);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/edit.go

    These flags are mainly for tools that understand the module graph.
    Users should prefer 'go get path@version' or 'go get path@none',
    which make other go.mod adjustments as needed to satisfy
    constraints imposed by other modules.
    
    The -go=version flag sets the expected Go language version.
    This flag is mainly for tools that understand Go version dependencies.
    Users should prefer 'go get go@version'.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    	UseLocationHost bool
    	// FlushInterval controls how often the standard HTTP proxy will flush content from the upstream.
    	FlushInterval time.Duration
    	// MaxBytesPerSec controls the maximum rate for an upstream connection. No rate is imposed if the value is zero.
    	MaxBytesPerSec int64
    	// Responder is passed errors that occur while setting up proxying.
    	Responder ErrorResponder
    	// Reject to forward redirect response
    	RejectForwardingRedirects bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top