Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,021 for indices (0.56 sec)

  1. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // 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
      optional int32 start = 1;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // 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
      optional int32 start = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  3. src/runtime/profbuf.go

    		// by the fact that the signal handler only reads from the current
    		// goroutine and uses atomics to write the updated queue indices,
    		// and then the read-out from the signal handler buffer uses
    		// atomics to read those queue indices.
    		raceacquire(unsafe.Pointer(&labelSync))
    	}
    
    	return data[:di], tags[:ti], false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/kubelet/pod/pod_manager.go

    	}
    	if numEC != 0 {
    		metrics.ManagedEphemeralContainers.Add(float64(numEC))
    	}
    }
    
    // updatePodsInternal replaces the given pods in the current state of the
    // manager, updating the various indices. The caller is assumed to hold the
    // lock.
    func (pm *basicManager) updatePodsInternal(pods ...*v1.Pod) {
    	for _, pod := range pods {
    		podFullName := kubecontainer.GetPodFullName(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

    import org.codelibs.fess.suggest.normalizer.Normalizer;
    import org.codelibs.fess.suggest.util.SuggestUtil;
    import org.opensearch.OpenSearchStatusException;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
    
    public class DefaultContentsParser implements ContentsParser {
    
        private final static Logger logger = LogManager.getLogger(DefaultContentsParser.class);
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/lookup.go

    //
    //  1. the list of declared methods of a named type; or
    //  2. the list of all methods (method set) of an interface type; or
    //  3. the list of fields of a struct type.
    //
    // The earlier index entries are the indices of the embedded struct fields
    // traversed to get to the found entry, starting at depth 0.
    //
    // If no entry is found, a nil object is returned. In this case, the returned
    // index and indirect values have the following meaning:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. src/go/types/lookup.go

    //
    //  1. the list of declared methods of a named type; or
    //  2. the list of all methods (method set) of an interface type; or
    //  3. the list of fields of a struct type.
    //
    // The earlier index entries are the indices of the embedded struct fields
    // traversed to get to the found entry, starting at depth 0.
    //
    // If no entry is found, a nil object is returned. In this case, the returned
    // index and indirect values have the following meaning:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. src/go/ast/ast.go

    	}
    
    	// An IndexListExpr node represents an expression followed by multiple
    	// indices.
    	IndexListExpr struct {
    		X       Expr      // expression
    		Lbrack  token.Pos // position of "["
    		Indices []Expr    // index expressions
    		Rbrack  token.Pos // position of "]"
    	}
    
    	// A SliceExpr node represents an expression followed by slice indices.
    	SliceExpr struct {
    		X      Expr      // expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

        AtomicDoubleArray aa = new AtomicDoubleArray(0);
        assertEquals(0, aa.length());
        assertThrows(IndexOutOfBoundsException.class, () -> aa.get(0));
      }
    
      /** get and set for out of bound indices throw IndexOutOfBoundsException */
      public void testIndexing() {
        AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
        for (int index : new int[] {-1, SIZE}) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

        ): ParameterArgumentBinding? {
            fun findParameterByName(name: String): DataParameter? = parameters.find { it.name == name }
            val lastPositionalArgIndex =
                arguments.indices.lastOrNull { arguments[it] is FunctionArgument.Positional } ?: arguments.size
    
            val bindingMap = mutableMapOf<DataParameter, FunctionArgument.ValueArgument>()
            arguments.forEachIndexed { argIndex, arg ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top