Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 761 for proper (0.07 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/IteratorTester.java

     *   <li>remove();
     *   <li>next();
     * </ol>
     *
     * <p>This particular order of operations may be unrealistic, and testing all 3^5 of them may be
     * thought of as overkill; however, it's difficult to determine which proper subset of this massive
     * set would be sufficient to expose any possible bug. Brute force is simpler.
     *
     * <p>To use this class the concrete subclass must implement the {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

      //
      // TODO: Determine how to detect ContentType and ContentEncoding of 'Raw' data.
      optional bytes raw = 1;
    }
    
    // TypeMeta is shared by all top level objects. The proper way to use it is to inline it in your type,
    // like this:
    //
    // 	type MyAwesomeAPIObject struct {
    // 	     runtime.TypeMeta    `json:",inline"`
    // 	     ... // other fields
    // 	}
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. samples/security/spire/README.md

    See [Istio CA Integration with SPIRE](https://istio.io/latest/docs/ops/integrations/spire) for further details about this integration.
    
    ## Deploy the integration
    
    1. Deploy SPIRE. For proper socket injection, this **must** be done prior to installing Istio in your cluster:
    
      ```bash
      $ kubectl apply -f spire-quickstart.yaml
      ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_to_string.cc

      if (!model_verifier.VerifyBuffer<Model>()) {
        std::cerr << "Verification failed.\n";
        return true;
      }
      return false;
    }
    
    // A FlatBuffer visitor that outputs a FlatBuffer as a string with proper
    // indention for sequence fields.
    // TODO(wvo): ToStringVisitor already has indentation functionality, use
    // that directly instead of this sub-class?
    struct IndentedToStringVisitor : flatbuffers::ToStringVisitor {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.cc

        // After we creat the alternative subgraph, we can still do canonicalization
        // legalization & other optimizations as long as we're not inlining the
        // function.
        // And in fact, we probably need to do the proper legalization, for the
        // compute cost to work. (in case we added some TF ops)
        pass_manager->addPass(mlir::TFL::CreatePrepareTFPass(
            /*unfold_batch_matmul=*/true,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/generated.proto

      //
      // TODO: Determine how to detect ContentType and ContentEncoding of 'Raw' data.
      optional bytes raw = 1;
    }
    
    // TypeMeta is shared by all top level objects. The proper way to use it is to inline it in your type,
    // like this:
    //
    // 	type MyAwesomeAPIObject struct {
    // 	     runtime.TypeMeta    `json:",inline"`
    // 	     ... // other fields
    // 	}
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/guarantee_all_funcs_one_use.cc

    // will be reused.
    //
    // This pass clones functions as needed to establish the invariant that all
    // functions have a single use. This can in principle cause exponential code
    // size bloat, and should in general be guided by a proper cost model.
    //
    // There are two factors which should be considered by a principled replacement
    // to this pass:
    //
    // 1. TF currently relies on "sufficiently good shape inference" for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/grappler/grappler.h

    //     plugin or core implementation:
    //     * Struct that should be filled by the plugin: `TP_OptimizerConfigs`,
    //       `TP_Optimizer`, `TP_OptimizerRegistrationParams`
    //     * Struct that should be filled by the proper: `TF_GrapplerItem`,
    //       `TF_GraphProperties`, `TF_FunctionLibraryDefinition`
    //   * We use `struct_size` for version checking. It should be set both by
    //     core and the plugin.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 03 18:08:43 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/debugger/comparer_test.go

    		{
    			name:      "missing cached value",
    			actual:    []string{"foo", "bar", "foobar"},
    			cached:    []string{"bar", "foo"},
    			missing:   []string{"foobar"},
    			redundant: []string{},
    		},
    		{
    			name:      "proper cache set",
    			actual:    []string{"foo", "bar", "foobar"},
    			cached:    []string{"bar", "foobar", "foo"},
    			missing:   []string{},
    			redundant: []string{},
    		},
    	}
    
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook_test.go

    	f, err := ioutil.TempFile("", "k8s_audit_webhook_test_")
    	require.NoError(t, err, "creating temp file")
    
    	defer func() {
    		f.Close()
    		os.Remove(f.Name())
    	}()
    
    	// NOTE(ericchiang): Do we need to use a proper serializer?
    	require.NoError(t, stdjson.NewEncoder(f).Encode(config), "writing kubeconfig")
    
    	retryBackoff := wait.Backoff{
    		Duration: 500 * time.Millisecond,
    		Factor:   1.5,
    		Jitter:   0.2,
    		Steps:    5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 08 06:37:26 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top