Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for first_if (0.17 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginTasksIntegrationTest.kt

                """
                package plugins
                """
            )
    
    
            val firstDir = existing(firstLocation)
            val secondDir = newDir(secondLocation)
            firstDir.copyRecursively(secondDir)
    
            val cachedTasks = listOf(
                ":extractPrecompiledScriptPluginPlugins",
                ":generateExternalPluginSpecBuilders",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 10:30:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. pkg/kubelet/userns/userns_manager.go

    func (m *UsernsManager) allocateOne(pod types.UID) (firstID uint32, length uint32, err error) {
    	firstZero, found, err := m.used.AllocateNext()
    	if err != nil {
    		return 0, 0, err
    	}
    	if !found {
    		return 0, 0, fmt.Errorf("could not find an empty slot to allocate a user namespace")
    	}
    
    	klog.V(5).InfoS("new pod user namespace allocation", "podUID", pod)
    
    	firstID = uint32((firstZero + m.off) * userNsLength)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        # bins[i + 1] = lower_bound + (i + 1) * bin_width
        # So hist_mids[i] = (lower_bound + bin_width / 2) + bin_width * i
        first_mid = self._lower_bound + self._bin_width / 2
        last_mid = first_mid + (self._num_bins - 1) * self._bin_width
        self._hist_mids = np.linspace(first_mid, last_mid, self._num_bins)
    
      def _get_dequantized_hist_mids_after_quantize(
          self, quant_min: float, quant_max: float
      ) -> np.ndarray:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

          XlaComputation& computation) {
        SourceMgrDiagnosticHandler sourceMgrHandler(source_manager_, &context_);
    
        mlir::Operation& first_op = GetFirstOpFromMain();
    
        Tf2XlaRewriterTestPeer test_peer(&first_op);
        return test_peer.ImportXlaComputationIntoModule(computation);
      }
    
     protected:
      MLIRContext context_;
      OwningOpRef<ModuleOp> module_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                plugins {
                    id("base")
                }
    
                task wrongZip(type: Zip) {
                    archiveBaseName = "wrong"
                }
                task firstZip(type: Zip) {
                    archiveBaseName = "first"
                }
    
                configurations {
                    consumable("blah") {
                        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. pkg/kubelet/userns/userns_manager_test.go

    		mappingLen     uint32
    		maxPods        int
    		success        bool
    	}{
    		{
    			name:    "default",
    			success: true,
    		},
    		{
    			name:           "firstID not multiple",
    			mappingFirstID: 65536 + 1,
    		},
    		{
    			name:           "firstID is less than 65535",
    			mappingFirstID: 1,
    		},
    		{
    			name:           "mappingLen not multiple",
    			mappingFirstID: 65536,
    			mappingLen:     65536 + 1,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

          }
        }
    
        // Assume all the replicas have the same structure.
        mlir::TF::TPUPartitionedOutputV2Op first_op = *(ops.begin());
        mlir::ArrayAttr dims = first_op.getPartitionDimsAttr();
        StringAttr sharding = first_op.get_XlaShardingAttr();
        Operation::result_type_range output_types = first_op.getResultTypes();
        result_op = builder.create<mlir::TF::TPUPartitionedOutputV2Op>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<Variadic<TF_Tensor>, [{A list of tensors to print out when op is evaluated.}]>:$data,
    
        DefaultValuedOptionalAttr<StrAttr, "\"\"">:$message,
        DefaultValuedOptionalAttr<I64Attr, "-1">:$first_n,
        DefaultValuedOptionalAttr<I64Attr, "3">:$summarize
      );
    
      let results = (outs
        Res<TF_Tensor, [{The unmodified `input` tensor}]>:$output
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top