Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 116 for index_ (0.14 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      }
      auto index_type = dense_attr.getType();
      const auto index_elem_bits = index_type.getElementTypeBitWidth();
      if (index_elem_bits != 32 && index_elem_bits != 64) {
        return false;
      }
      // Checks that the index has shape of [1, 1, 1, ..., 1, N].
      if (index_type.getRank() < 1 ||
          llvm::any_of(index_type.getShape().drop_back(),
                       [](int64_t dim) { return dim != 1; })) {
        return false;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"type(self.val1) == string",
    				"size(self.val1) == 12",
    
    				// string functions (https://github.com/google/cel-go/blob/v0.9.0/ext/strings.go)
    				"self.val1.charAt(3) == 'k'",
    				"self.val1.indexOf('o') == 1",
    				"self.val1.indexOf('o', 2) == 2",
    				"self.val1.replace(' ', 'x') == 'Rookxtakesx👑'",
    				"self.val1.replace(' ', 'x', 1) == 'Rookxtakes 👑'",
    				"self.val1.split(' ') == ['Rook', 'takes', '👑']",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    	podsLister       corelisters.PodLister
    	claimsLister     corelisters.PersistentVolumeClaimLister
    	setsLister       appslisters.StatefulSetLister
    	podsIndexer      cache.Indexer
    	claimsIndexer    cache.Indexer
    	setsIndexer      cache.Indexer
    	revisionsIndexer cache.Indexer
    	createPodTracker requestTracker
    	updatePodTracker requestTracker
    	deletePodTracker requestTracker
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			t.Errorf("%v: expected no error, but got %v", tc.name, err)
    		}
    	}
    }
    
    type predictableNameGenerator struct {
    	index int
    }
    
    func (p *predictableNameGenerator) GenerateName(base string) string {
    	p.index++
    	return fmt.Sprintf("%s%d", base, p.index)
    }
    
    func TestStoreCreateGenerateNameConflict(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

    func.func @eliminatePassThroughCaseRegion(%arg0: tensor<f32>, %arg1: tensor<f32>, %arg2: tensor<!tf_type.resource>) -> (tensor<f32>) {
      // CHECK: %[[INDEX:.*]] = "tf._SomeOp"() : () -> tensor<i32>
      %index = "tf._SomeOp"() : () -> tensor<i32>
      // CHECK: %[[CASE_OUTPUT:.*]] = "tf.CaseRegion"(%[[INDEX]]) <{is_stateless = true}> ({
      // CHECK:   %[[MUL:.*]] = "tf.Mul"(%[[ARG0]], %[[ARG1]])
      // CHECK:   "tf.Yield"(%[[MUL]]) : (tensor<f32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation_test.go

    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name: "webhook.k8s.io",
    			ClientConfig: admissionregistration.WebhookClientConfig{
    				URL: strPtr("arg#backwards=thisis?html.index/port:host//:https"),
    			},
    		},
    		}, true),
    		expectedError: `host must be specified`,
    	}, {
    		name: "path must start with slash",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    			}
    
    			const cgoLdflag = "//go:cgo_ldflag"
    			idx := bytes.Index(src, []byte(cgoLdflag))
    			for idx >= 0 {
    				// We are looking at //go:cgo_ldflag.
    				// Find start of line.
    				start := bytes.LastIndex(src[:idx], []byte("\n"))
    				if start == -1 {
    					start = 0
    				}
    
    				// Find end of line.
    				end := bytes.Index(src[idx:], []byte("\n"))
    				if end == -1 {
    					end = len(src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

           an input argument if the initial value of the resource is read, or to the
           output if the initial value is not read.
    
         . 'tf.aliasing_output' is the index of the function output that is an alias
           of the input argument. This attribute is added only to the input argument
           when the initial value of the corresponding resource is read, and the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          padded_shape[i] += padding;
        }
    
        return padded_shape;
      }
    
      std::pair<int64_t, int64_t> GetDimSize(
          const ArrayRef<int64_t> shape, const ArrayRef<int64_t> indexes) const {
        return {shape[indexes[0]], shape[indexes[1]]};
      }
    
      bool IsTransposeConv(
          stablehlo::ConvolutionOp op,
          stablehlo::ConvDimensionNumbersAttr dimension_numbers) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "node": ">=4"
          }
        },
        "node_modules/strip-indent": {
          "version": "3.0.0",
          "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz",
          "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==",
          "dev": true,
          "dependencies": {
            "min-indent": "^1.0.0"
          },
          "engines": {
            "node": ">=8"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
Back to top