Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for index (0.05 sec)

  1. pkg/controller/job/job_controller_test.go

    				buildPod().phase(v1.PodSucceeded).index("0").Pod,
    				buildPod().phase(v1.PodFailed).index("1").Pod,
    				buildPod().phase(v1.PodSucceeded).trackingFinalizer().index("1").Pod,
    				buildPod().phase(v1.PodSucceeded).trackingFinalizer().index("3").Pod,
    				buildPod().uid("a").phase(v1.PodFailed).trackingFinalizer().index("2").Pod,
    				buildPod().uid("b").phase(v1.PodFailed).trackingFinalizer().index("5").Pod,
    			},
    			wantRmFinalizers: 4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      BufferOffset<tflite::Buffer> empty_buffer_;
    
      std::vector<BufferOffset<tflite::Buffer>> buffers_;
      // Maps subgraph index and tensor name in the graph to the tensor index.
      absl::flat_hash_map<int, absl::flat_hash_map<std::string, int>>
          tensor_index_map_;
    
      // Maps op name to index of the corresponding OperatorCode in opcodes_ vector.
      absl::flat_hash_map<std::string, uint32_t> opcode_index_map_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    type FunctionParam struct {
    	Index int
    }
    
    func (fp *FunctionParam) print(ps *printState) {
    	if fp.Index == 0 {
    		ps.writeString("this")
    	} else if ps.llvmStyle {
    		if fp.Index == 1 {
    			ps.writeString("fp")
    		} else {
    			fmt.Fprintf(&ps.buf, "fp%d", fp.Index-2)
    		}
    	} else {
    		fmt.Fprintf(&ps.buf, "{parm#%d}", fp.Index)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // and the latter will match any other path in the "/images/" subtree.
    //
    // As another example, consider the patterns "GET /" and "/index.html":
    // both match a GET request for "/index.html", but the former pattern
    // matches all other GET and HEAD requests, while the latter matches any
    // request for "/index.html" that uses a different method.
    // The patterns conflict.
    //
    // # Trailing-slash redirection
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

        }
    
        def "failure in transformation chain propagates (position in chain: #failingTransform)"() {
            given:
    
            Closure<String> possiblyFailingTransform = { index ->
                index == failingTransform ? "FailingDuplicator" : "Duplicator"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      string customOption = ?;
    }
    
    class TFL_ConvOp<string mnemonic, string opSummary, int index,
                     list<Trait> additional_traits = []> :
        TFL_Op<mnemonic,[Pure,
                         AccumulatorUniformScale<2, 0, 1>,
                         AffineQuantizedOpInterface,
                         AffineOpCoefficient<index, 1>,
                         QuantizableResult,
                         TFL_SparseOp] # additional_traits> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                                       OpResult op_result) {
        return ComputeOutputAsShape(op_result, &context);
      };
    
      // Return result element type at `index`.
      auto result_element_type_fn = [&](int index) {
        return mlir::cast<TensorType>(op->getResult(index).getType())
            .getElementType();
      };
    
      llvm::SmallVector<ShapedTypeComponents, 4> inferred_return_shapes;
    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. android/guava/src/com/google/common/collect/Maps.java

       *     uniqueIndex(allColors, c -> c.toString());
       * assertThat(colorForName).containsEntry("red", red);
       * }</pre>
       *
       * <p>If your index may associate multiple values with each key, use {@link
       * Multimaps#index(Iterable, Function) Multimaps.index}.
       *
       * <p><b>Note:</b> on Java 8+, it is usually better to use streams. For example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"size(self.array.filter(e, e%2 == 0)) == 3",
    				"self.array.map(e, e * 20).filter(e, e > 50).exists(e, e == 60)",
    				"size(self.array) == 8",
    			},
    			errors: map[string]string{
    				"self.array[100] == 0": "index out of bounds: 100",
    			},
    		},
    		{name: "listSet access",
    			obj: map[string]interface{}{
    				"set": []interface{}{1, 2, 3, 4, 5},
    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. 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)
Back to top