Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 408 for Indices (0.12 sec)

  1. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// 0-indexed names, or to orchestrate progressive movement of replicas from
    	// one StatefulSet to another.
    	// If set, replica indices will be in the range:
    	//   [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
    	// If unset, defaults to 0. Replica indices will be in the range:
    	//   [0, .spec.replicas).
    	// +optional
    	Start int32 `json:"start" protobuf:"varint,1,opt,name=start"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  2. pkg/registry/certificates/certificates/strategy.go

    	// preserve the old condition values
    	for i, oldIndex := range oldIndices {
    		newCSR.Status.Conditions[newIndices[i]] = oldCSR.Status.Conditions[oldIndex]
    	}
    	return true
    }
    
    // findConditionIndices returns the indices of instances of the specified condition type
    func findConditionIndices(csr *certificates.CertificateSigningRequest, conditionType certificates.RequestConditionType) []int {
    	var retval []int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/duplicate_shape_determining_constants.mlir

      %rhs_dilation = "tf.Const"() {value = dense<1> : tensor<3xi32>} : () -> tensor<3xi32>
      %feature_group_count = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
    
      // tf.XlaConvV2's 2, 3, 4, 5, 6 indices should be compile-time constants.
      %0 = "tf.XlaConvV2"(%arg0, %arg1, %strides, %padding, %lhs_dilation, %rhs_dilation, %feature_group_count) {
          batch_group_count = 1 : i64,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 07:44:46 UTC 2022
    - 11K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributesSchema.java

                        // Iterate in order
                        return new PrecedenceResult(remaining.values());
                    } else {
                        // sorted now contains any requested attribute indices in the order they appear in
                        // the consumer and producer's attribute precedences
                        return new PrecedenceResult(sorted, remaining.values());
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:59:54 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/ipam/cidrset/cidr_set.go

    	return s.indexToCIDRBlock(candidate), nil
    }
    
    func (s *CidrSet) getBeginningAndEndIndices(cidr *net.IPNet) (begin, end int, err error) {
    	if cidr == nil {
    		return -1, -1, fmt.Errorf("error getting indices for cluster cidr %v, cidr is nil", s.clusterCIDR)
    	}
    	begin, end = 0, s.maxCIDRs-1
    	cidrMask := cidr.Mask
    	maskSize, _ := cidrMask.Size()
    	var ipSize int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. tensorflow/c/eager/tape.h

    // The entry, "FusedBatchNorm": [1, 2, 3, 4], indicates that only the gradient
    // corresponding to index 0 is used, and the gradient values at indices 1-4 are
    // ignored (and hence can be None). The backprop algorithm can then leverage
    // this by not constructing zeros to pass for those indices.
    std::unordered_map<string, std::unordered_set<int>>*
    FunctionsAcceptingNoneForIndicesMap() {
      static auto* const m =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    }
    
    func (StatefulSetOrdinals) SwaggerDoc() map[string]string {
    	return map_StatefulSetOrdinals
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/numberlines.go

    			entries = append(entries, fileAndPair{int32(k), v})
    		}
    		sort.Sort(entries)
    		total := uint64(0)            // sum over files of maxline(file) - minline(file)
    		maxfile := int32(0)           // max(file indices)
    		minline := uint32(0xffffffff) // min over files of minline(file)
    		maxline := uint32(0)          // max over files of maxline(file)
    		for _, v := range entries {
    			if f.pass.stats > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

            }
    
            /**
             * This uses an optimized version of {@link String#regionMatches(int, String, int, int)}
             * which does not check for negative indices or integer overflow.
             */
            boolean isChildOfOrThis(String filePath, int offset) {
                if (prefix.isEmpty()) {
                    return true;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/ConnectionReuseTest.kt

            .build()
        server.useHttps(handshakeCertificates.sslSocketFactory())
        server.protocols = client.protocols
      }
    
      private fun assertConnectionReused(vararg requests: Request?) {
        for (i in requests.indices) {
          val response = client.newCall(requests[i]!!).execute()
          response.body.string() // Discard the response body.
          assertThat(server.takeRequest().sequenceNumber).isEqualTo(i)
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top