Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 244 for addOption (0.16 sec)

  1. pilot/pkg/features/pilot.go

    	// production; when assertions fail Istio will panic.
    	EnableUnsafeAssertions = env.Register(
    		"UNSAFE_PILOT_ENABLE_RUNTIME_ASSERTIONS",
    		false,
    		"If enabled, addition runtime asserts will be performed. "+
    			"These checks are both expensive and panic on failure. As a result, this should be used only for testing.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm.go

    // Point addition with an affine point and constant time conditions.
    // If zero is 0, sets res = in2. If sel is 0, sets res = in1.
    // If sign is not 0, sets res = in1 + -in2. Otherwise, sets res = in1 + in2
    //
    //go:noescape
    func p256PointAddAffineAsm(res, in1 *P256Point, in2 *p256AffinePoint, sign, sel, zero int)
    
    // Point addition. Sets res = in1 + in2. Returns one if the two input points
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema.fbs

      DepthwiseConv2DOptions,
      ConcatEmbeddingsOptions,
      LSHProjectionOptions,
      Pool2DOptions,
      SVDFOptions,
      RNNOptions,
      FullyConnectedOptions,
      SoftmaxOptions,
      ConcatenationOptions,
      AddOptions,
      L2NormOptions,
      LocalResponseNormalizationOptions,
      LSTMOptions,
      ResizeBilinearOptions,
      CallOptions,
      ReshapeOptions,
      SkipGramOptions,
      SpaceToDepthOptions,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. architecture/networking/pilot.md

    #### Ingress
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/deployment.go

    	}
    	defer f.Close()
    
    	if cfg.VMEnvironment != nil {
    		for k, v := range cfg.VMEnvironment {
    			addition := fmt.Sprintf("%s=%s\n", k, v)
    			_, err = f.WriteString(addition)
    			if err != nil {
    				return fmt.Errorf("failed writing %q to %s: %v", addition, clusterEnv, err)
    			}
    		}
    	}
    	if !ctx.Environment().(*kube.Environment).Settings().LoadBalancerSupported {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataProcessorTest.groovy

            ModuleVersionResolveException e = thrown()
            e.message == /Unexpected status 'green' specified for group:module:version. Expected one of: [alpha, beta]/
        }
    
        def "process different type rules whatever addition order"() {
            given:
            context.injectingInstantiator >> instantiator
            String notation = "${GROUP}:${MODULE}"
            for (Object rule : rules) {
                if (rule instanceof SpecRuleAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

                            implementation(project(":unused"))
                        }
                    }
                }
            """
    
            expect:
            // Addition of 'unused' dependency rebuilds everything.
            succeeds("compileDebugSwift", "-PincludeDep")
            outputs.recompiledClasses('main', 'sum', 'greeter', 'multiply')
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/dwarfgen/dwinl.go

    	// based on variable name.
    	//
    	// If a variable was not produced by an inline and its containing
    	// function was inlined, then we need to assign a child index
    	// based on the order of vars in the abstract function (in
    	// addition, those vars that don't appear in the abstract
    	// function, such as "~r1", are flagged as such).
    	//
    	// If a variable was produced by an inline, then we locate it in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/types.go

    	// global PercentageOfNodesToScore will be used.
    	PercentageOfNodesToScore *int32
    
    	// Plugins specify the set of plugins that should be enabled or disabled.
    	// Enabled plugins are the ones that should be enabled in addition to the
    	// default plugins. Disabled plugins are any of the default plugins that
    	// should be disabled.
    	// When no enabled or disabled plugin is specified for an extension point,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Joiner.java

      }
    
      /**
       * An object that joins map entries in the same manner as {@code Joiner} joins iterables and
       * arrays. Like {@code Joiner}, it is thread-safe and immutable.
       *
       * <p>In addition to operating on {@code Map} instances, {@code MapJoiner} can operate on {@code
       * Multimap} entries in two distinct modes:
       *
       * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top