Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 163 for addOption (0.23 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema_v3b.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: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    editorial revisions, annotations, elaborations, or other modifications
    represent, as a whole, an original work of authorship.
    
    "Modified Works" shall mean any work in Source Code or other form that
    results from an addition to, deletion from, or modification of the
    contents of the Program, including, for purposes of clarity any new file
    in Source Code form that contains any contents of the Program. Modified
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. helm/minio/values.yaml

    ## List of policies to be created after minio install
    ##
    ## In addition to default policies [readonly|readwrite|writeonly|consoleAdmin|diagnostics]
    ## you can define additional policies with custom supported actions and resources
    policies: []
    ## writeexamplepolicy policy grants creation or deletion of buckets with name
    ## starting with example. In addition, grants objects write permissions on buckets starting with
    ## example.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (1)
  4. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    								InstanceName:    "instance",
    								CertificateName: "certificate",
    							},
    						},
    					}),
    				},
    			},
    		},
    		{
    			Name: "outbound|7777||custom-tls-addition",
    		},
    		{
    			Name:            "outbound|7777||custom-tls-replacement",
    			DnsLookupFamily: cluster.Cluster_V4_ONLY,
    			LbPolicy:        cluster.Cluster_ROUND_ROBIN,
    			TransportSocket: &core.TransportSocket{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/runtime/runtime.go

    // amount of time has passed by the time we get here.
    //
    // Must be called from a normal goroutine context (running regular goroutine with a P).
    //
    // Called by runtime/pprof in addition to runtime code.
    //
    // TODO(mknyszek): This doesn't account for things like CPU frequency scaling. Consider
    // a more sophisticated and general approach in the future.
    func ticksPerSecond() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. architecture/ambient/ztunnel.md

    * Ensure traffic between mesh workloads is securely encrypted with an Istio identity.
    * Be lightweight enough to not limit adoption.
      * This puts a much tighter budget on CPU, memory, latency, and throughput requirements than traditional Istio sidecars.
    
    Ztunnel was not designed to be a feature-rich data plane.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top