Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 134 for Option (0.59 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    }
    
    StatusOr<llvm::SmallVector<mlir::NamedAttribute, 4>>
    ConvertSubgraphIdxsToFunctionAttrs(tflite::BuiltinOptionsUnion options,
                                       const std::vector<std::string>& func_names,
                                       Builder builder) {
      if (auto* opts = options.AsCallOnceOptions()) {
        uint32_t init_idx = opts->init_subgraph_index;
        if (init_idx >= func_names.size()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	stdout, stderr, err := m.runtimeService.ExecSync(ctx, id.ID, cmd, timeout)
    	// NOTE(tallclair): This does not correctly interleave stdout & stderr, but should be sufficient
    	// for logging purposes. A combined output option will need to be added to the ExecSyncRequest
    	// if more precise output ordering is ever required.
    	return append(stdout, stderr...), err
    }
    
    // removeContainer removes the container and the container logs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  3. cmd/sts-handlers_test.go

    	exportContentStrings := map[string]string{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    	}
    	if v {
    		l.attrDuplicateOK.Set(l.extIndex(i))
    	} else {
    		l.attrDuplicateOK.Unset(l.extIndex(i))
    	}
    }
    
    // AttrShared returns true for symbols compiled with the -shared option.
    func (l *Loader) AttrShared(i Sym) bool {
    	if !l.IsExternal(i) {
    		// TODO: if this path winds up being taken frequently, it
    		// might make more sense to copy the flag value out of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractFuture.java

           * a valid value for V.
           */
          return uncheckedNull();
        } else {
          @SuppressWarnings("unchecked") // this is the only other option
          V asV = (V) obj;
          return asV;
        }
      }
    
      @Override
      public boolean isDone() {
        final Object localValue = value;
        return localValue != null & !(localValue instanceof SetFuture);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

           * a valid value for V.
           */
          return uncheckedNull();
        } else {
          @SuppressWarnings("unchecked") // this is the only other option
          V asV = (V) obj;
          return asV;
        }
      }
    
      @Override
      public boolean isDone() {
        final Object localValue = value;
        return localValue != null & !(localValue instanceof SetFuture);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. cmd/erasure-server-pool.go

    					evt := evalActionFromLifecycle(ctx, *opts.Lifecycle, opts.Retention, opts.Replication.Config, objInfo)
    					if evt.Action.Delete() {
    						globalExpiryState.enqueueByDays(objInfo, evt, lcEventSrc_s3ListObjects)
    						if !evt.Action.DeleteRestored() {
    							// Skip entry if ILM action was DeleteVersionAction or DeleteAction
    							return loi, nil
    						}
    					}
    				}
    				return loi, nil
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/manager_test.go

    	devices    map[string]string
    	mounts     map[string]string
    	envs       map[string]string
    	cdiDevices []string
    }
    
    // containerAllocateResponseBuilderOption defines a functional option for a containerAllocateResponseBuilder
    type containerAllocateResponseBuilderOption func(*containerAllocateResponseBuilder)
    
    // withDevices sets the devices for the containerAllocateResponseBuilder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	podList := example.PodList{}
    	options := storage.ListOptions{
    		Predicate: storage.Everything,
    		Recursive: true,
    	}
    	if err := store.GetList(ctx, "/pods", options, &podList); err != nil {
    		t.Fatalf("Failed to list pods: %v", err)
    	}
    	initialRV := podList.ResourceVersion
    
    	options = storage.ListOptions{
    		ResourceVersion: initialRV,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    	t.tests = append(t.tests, distTest{
    		name:    name,
    		heading: heading,
    		fn:      fn,
    	})
    }
    
    type registerTestOpt interface {
    	isRegisterTestOpt()
    }
    
    // rtSkipFunc is a registerTest option that runs a skip check function before
    // running the test.
    type rtSkipFunc struct {
    	skip func(*distTest) (string, bool) // Return message, true to skip the test
    }
    
    func (rtSkipFunc) isRegisterTestOpt() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top