Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 107 for nextB (0.05 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // properties will be computed through the RootLocator found in the container.
            RootLocator rootLocator =
                    ServiceLoader.load(RootLocator.class).iterator().next();
            cliRequest.rootDirectory = rootLocator.findRoot(topDirectory);
    
            //
            // Make sure the Maven home directory is an absolute path to save us from confusion with say drive-relative
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

                Consumer<ProviderInternal<?>> consumer
            ) {
                given:
                def property = property()
                Provider<T> item = property.map { list -> list.iterator().next() }
                property.add(item)
    
                when:
                consumer.accept(property)
    
                then:
                thrown(EvaluationContext.CircularEvaluationException)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. common/scripts/metallb-native.yaml

                    type: integer
                  nodeSelectors:
                    description: NodeSelectors allows to limit the nodes to announce as
                      next hops for the LoadBalancer IP. When empty, all the nodes having  are
                      announced as next hops.
                    items:
                      description: A label selector is a label query over a set of resources.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    			}
    			suffix := p.collapse(sub[start:i], OpAlternate) // recurse
    
    			re := p.newRegexp(OpConcat)
    			re.Sub = append(re.Sub[:0], prefix, suffix)
    			out = append(out, re)
    		}
    
    		// Prepare for next iteration.
    		start = i
    		str = istr
    		strflags = iflags
    	}
    	sub = out
    
    	// Round 2: Factor out common simple prefixes,
    	// just the first piece of each concatenation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation.go

    			// Failure to parse "completed" interval. We go to the next interval,
    			// the error will be reported to the user when validating the format.
    			completedPos++
    			if completedPos < len(completedIndexesIntervals) {
    				cX, cY, cErr = parseIndexInterval(completedIndexesIntervals[completedPos], completions)
    			}
    		} else if fErr != nil {
    			// Failure to parse "failed" interval. We go to the next interval,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    
    #### Options
    ```
    -force-data-format : Force data format for all layout sensitive ops.
    ```
    ### `-tf-localize-var-handles`
    
    _Creates VarHandleOps next to the operations that use them._
    
    Creates VarHandleOps right next to the operations that use them, one
    per operation.
    This is useful for transformations that only end up with a few small
    snippets of remaining TF code, and wish for those snippets to be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				status.ContainerStatuses[2].State = kubecontainer.ContainerStateCreated
    			},
    			actions: noAction,
    		},
    		"restartable init container has started; start the next": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyAlways },
    			mutateStatusFn: func(pod *v1.Pod, status *kubecontainer.PodStatus) {
    				status.ContainerStatuses = status.ContainerStatuses[:1]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // a list starting from the next key, but from the latest snapshot, which is inconsistent from the
      // previous list results - objects that are created, modified, or deleted after the first list request
      // will be included in the response, as long as their keys are after the "next key".
      //
      // This field is not supported when watch is true. Clients may start a watch from the last
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // a list starting from the next key, but from the latest snapshot, which is inconsistent from the
      // previous list results - objects that are created, modified, or deleted after the first list request
      // will be included in the response, as long as their keys are after the "next key".
      //
      // This field is not supported when watch is true. Clients may start a watch from the last
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    		}
    		pi, err := pool.PutObjectPart(ctx, bucket, object, uploadID, partID, data, opts)
    		if err == nil {
    			return pi, nil
    		}
    		if _, ok := err.(InvalidUploadID); ok {
    			// Look for information on the next pool
    			continue
    		}
    		// Any other unhandled errors such as quorum return.
    		return PartInfo{}, err
    	}
    
    	return PartInfo{}, InvalidUploadID{
    		Bucket:   bucket,
    		Object:   object,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top