Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for example2 (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/apiserver/pkg/admission"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/apis/example"
    	examplefuzzer "k8s.io/apiserver/pkg/apis/example/fuzzer"
    	examplev1 "k8s.io/apiserver/pkg/apis/example/v1"
    	"k8s.io/apiserver/pkg/audit"
    	auditpolicy "k8s.io/apiserver/pkg/audit/policy"
    	genericapifilters "k8s.io/apiserver/pkg/endpoints/filters"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        if (mlir::isa<quant::QuantizedType>(
                conv_op.getRhs().getType().getElementType())) {
          return failure();
        }
    
        // Constructs strides array.
        // For example, [2, 3] -> [1, 2, 3, 1].
        SmallVector<int64_t, num_spatial_dims + 2> strides({1});
        for (const auto v :
             conv_op.getWindowStrides().value().getValues<int64_t>()) {
          strides.emplace_back(v);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__policy__v1_openapi.json

                  }
                ],
                "description": "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\"."
              },
              "minAvailable": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	}
    
    	// Report the error on the importing package if the problem is with the import declaration
    	// for example, if the package doesn't exist or if the import path is malformed.
    	// On the other hand, don't include a position if the problem is with the imported package,
    	// for example there are no Go files (NoGoError), or there's a problem in the imported
    	// package's source files themselves (scanner errors).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

       * other words, each input value produces an entry in the map whose key is the result of applying
       * {@code keyFunction} to that value. These entries appear in the same order as the input values.
       * Example usage:
       *
       * <pre>{@code
       * Color red = new Color("red", 255, 0, 0);
       * ...
       * ImmutableSet<Color> allColors = ImmutableSet.of(red, green, blue);
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

       * other words, each input value produces an entry in the map whose key is the result of applying
       * {@code keyFunction} to that value. These entries appear in the same order as the input values.
       * Example usage:
       *
       * <pre>{@code
       * Color red = new Color("red", 255, 0, 0);
       * ...
       * ImmutableSet<Color> allColors = ImmutableSet.of(red, green, blue);
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation_test.go

    				Spec: batch.JobSpec{
    					Selector:  validGeneratedSelector,
    					Template:  validPodTemplateSpecForGenerated,
    					ManagedBy: ptr.To("example.com/custom-controller1"),
    				},
    			},
    			update: func(job *batch.Job) {
    				job.Spec.ManagedBy = ptr.To("example.com/custom-controller2")
    			},
    			err: &field.Error{
    				Type:  field.ErrorTypeInvalid,
    				Field: "spec.managedBy",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        // Check that the outermost reshape_op in the pattern does not add
        // additional elements to the final output tensor.
        // TODO: b/323217483. This code needs to generalized to additional cases.
        // For example- inner-shape = [1, 1, 1, 8, 1, 10],
        // broadcast_shape = [1, 1, 1, 8, 16, 10] & outer_shape = [1, 1, 1, 1280, 1]
        // And extend the pettern to handle dynamic shapes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

              },
              "group": {
                "description": "group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".",
                "type": "string"
              },
              "kind": {
                "default": "",
                "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          llvm::ArrayRef(return_squeeze_shape));
    }
    
    // This is a utility function to deduce the effective permutation to apply on
    // TFL_TransposeOp when the tensor has some dimensions with value==1
    // Example- "tfl.transpose"(tensor<56x8x56x1x1x1x7xf32>, [4, 5, 1, 2, 0, 6, 3])
    // Permutation before squeese is [4, 5, 1, 2, 0, 6, 3] becomes [1, 2, 0, 3]
    // after squeeze is perfomed to retain the relative ordering of the non-1 dims.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top