Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 205 for examine (0.16 sec)

  1. guava/src/com/google/common/base/CharMatcher.java

       * start}, calling {@link #matches} for each character.
       *
       * @param sequence the character sequence to examine
       * @param start the first index to examine; must be nonnegative and no greater than {@code
       *     sequence.length()}
       * @return the index of the first matching character, guaranteed to be no less than {@code start},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/CharMatcher.java

       * start}, calling {@link #matches} for each character.
       *
       * @param sequence the character sequence to examine
       * @param start the first index to examine; must be nonnegative and no greater than {@code
       *     sequence.length()}
       * @return the index of the first matching character, guaranteed to be no less than {@code start},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    	dsc.enqueueDaemonSet(ds)
    }
    
    func (dsc *DaemonSetsController) addNode(logger klog.Logger, obj interface{}) {
    	// TODO: it'd be nice to pass a hint with these enqueues, so that each ds would only examine the added node (unless it has other work to do, too).
    	dsList, err := dsc.dsLister.List(labels.Everything())
    	if err != nil {
    		logger.V(4).Info("Error enqueueing daemon sets", "err", err)
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    				return v.Op == OpInitMem
    			}
    		}
    
    		// Examine the prolog portion of the block to process special
    		// zero-width ops such as Arg, Phi, LoweredGetClosurePtr (etc)
    		// whose lifetimes begin at the block starting point. In an
    		// entry block, allow for the possibility that we may see Arg
    		// ops that appear _after_ other non-zero-width operations.
    		// Example:
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    // 	  module), or
    // 	- the package is in "all" and the definition of "all" we are using includes
    // 	  dependencies of tests (as is the case in Go ≤1.15).
    //
    // After all available packages have been loaded, we examine the results to
    // identify any requested or imported packages that are still missing, and if
    // so, which modules we could add to the module graph in order to make the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	})
    	if err != nil {
    		klog.ErrorS(err, "ListContainers error")
    		return nil, err
    	}
    
    	statuses := []*kubecontainer.Status{}
    	// TODO: optimization: set maximum number of containers per container name to examine.
    	for _, c := range containers {
    		resp, err := m.runtimeService.ContainerStatus(ctx, c.Id, false)
    		// Between List (ListContainers) and check (ContainerStatus) another thread might remove a container, and that is normal.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // Note that registries may mutate the input object (e.g. in the strategy
    // hooks).  Tests which call this might want to call DeepCopy if they expect to
    // be able to examine the input and output objects for differences.
    func (e *Store) Create(ctx context.Context, obj runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    };
    
    LogicalResult EliminateResourceLoops(OpBuilder& builder,
                                         SymbolTable& symbol_table,
                                         func::FuncOp func) {
      // Examine all StatefulPartitionedCall ops that have resources as return
      // types. If the returned resource traces back to an input argument for the
      // SPC, then replace uses of the returned copy with the original input.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/copy-with-deep-filter-example.png

    copy-with-deep-filter-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 16:19:30 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/copy-with-flat-filter-example.png

    copy-with-flat-filter-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 16:19:30 UTC 2024
    - 62.8K bytes
    - Viewed (0)
Back to top