Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for assist (0.14 sec)

  1. pkg/controller/podautoscaler/horizontal_test.go

    			tc.Lock()
    			defer tc.Unlock()
    
    			obj := action.(core.UpdateAction).GetObject().(*autoscalingv2.HorizontalPodAutoscaler)
    			assert.Equal(t, namespace, obj.Namespace, "the HPA namespace should be as expected")
    			assert.Equal(t, hpaName, obj.Name, "the HPA name should be as expected")
    			assert.Equal(t, tc.expectedDesiredReplicas, obj.Status.DesiredReplicas, "the desired replica count reported in the object status should be as expected")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        for (const auto& kv : exceptions) {
          assert(!hoist_params->lhs_args[kv.second]);
          assert(!hoist_params->rhs_args[kv.second]);
    
          if (hoist_params->scalar_operand_idx == 1) {
            hoist_params->lhs_args[kv.second] = kv.first;
            hoist_params->rhs_args[kv.second] = identity_const;
          } else {
            assert(hoist_params->scalar_operand_idx == 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                        });
    
      struct NamedAsset {
        llvm::StringRef name;
        AssetOp asset;
      };
      llvm::SmallVector<NamedAsset, 4> assets;
      for (auto asset : module.getOps<AssetOp>()) {
        assets.push_back({asset.getName(), asset});
      }
      llvm::stable_sort(assets, [](const NamedAsset& a, const NamedAsset& b) {
        return a.name < b.name;
      });
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        assert input.exists()
                        def output = outputs.file(input.name + ".\${parameters.target.get()}")
                        def outputDirectory = output.parentFile
                        assert outputDirectory.directory && outputDirectory.list().length == 0
                        if (parameters.target.get() == "size") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    			select {
    			case e := <-fakeRecorder.Events:
    				assert.Equal(t, tc.expectedEvent, e)
    			default:
    				assert.Equal(t, "", tc.expectedEvent)
    			}
    			if tc.expectedError {
    				assert.Error(t, err, tc.name)
    			} else {
    				assert.NoError(t, err, "[%s]", tc.name)
    
    				sort.Sort(envs(result))
    				sort.Sort(envs(tc.expectedEnvs))
    				assert.Equal(t, tc.expectedEnvs, result, "[%s] env entries", tc.name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. cmd/object-handlers_test.go

    	credentials auth.Credentials, t *testing.T,
    ) {
    	objectName := "test-object"
    	// set of byte data for PutObject.
    	// object has to be created before running tests for HeadObject.
    	// this is required even to assert the HeadObject data,
    	// since dataInserted === dataFetched back is a primary criteria for any object storage this assertion is critical.
    	bytesData := []struct {
    		byteData []byte
    	}{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (!type.hasRank() || type.getRank() != 1) return {};
      if (port.size() != 2) return {};
      assert(port[0] == 0);
      return ValuePort(op.getOperand(port[1]));
    }
    
    ValuePort ComputeInputComponentFor(ConcatV2Op op, ArrayRef<unsigned int> port) {
      if (port.size() != 2) return {};
      assert(port[0] == 0);
    
      int64_t element_idx = port[1];
      for (Value val : op.getValues()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    		ldr.SetSymAlign(ldr.Lookup("runtime.bss", 0), state.dataMaxAlign[sym.SBSS])
    	}
    
    	// Create *sym.Section objects and assign symbols to sections for
    	// data/rodata (and related) symbols.
    	state.allocateDataSections(ctxt)
    
    	state.allocateSEHSections(ctxt)
    
    	// Create *sym.Section objects and assign symbols to sections for
    	// DWARF symbols.
    	state.allocateDwarfSections(ctxt)
    
    	/* number the sections */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        MutableArrayRef<int64_t> end, MutableArrayRef<int64_t> stride) {
      assert(input_shape.size() <= 32);  // Only 32-bit masks are supported.
    
      // Make sure ranges' ranks are consistent with the input.
      assert(input_shape.size() == begin.size());
      assert(input_shape.size() == end.size());
      assert(input_shape.size() == stride.size());
    
      for (int i = 0, e = input_shape.size(); i < e; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            } else {
                // TODO - the suffix should be a deterministic function of the known and enabled annotations
                // For now, just assign using a counter
                suffix = ClassGeneratorSuffixRegistry.assign("$Decorated");
                generatedClasses = cacheFactory.newClassMap();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
Back to top