Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 177 for greatest (0.59 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                                       const llvm::SetVector<Value>& inputs,
                                       const llvm::SetVector<Value>& outputs,
                                       const std::string& name) {
      // Creates an empty func.FuncOp with a signature compatible with 'inputs'
      // (operands) and 'outputs' (results).
      OpBuilder builder(module);
      auto in_types = GetValueTypes(inputs);
      auto out_types = GetValueTypes(outputs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    		return ObjectInfo{}, toObjectErr(err, minioMetaBucket, key)
    	}
    
    	return fi.ToObjectInfo(minioMetaBucket, key, opts.Versioned || opts.VersionSuspended), nil
    }
    
    // PutObject - creates an object upon reading from the input stream
    // until EOF, erasure codes the data across all disk and additionally
    // writes `xl.meta` which carries the necessary metadata for future
    // object operations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    	case updateCloser <- ch:
    		<-ch
    	case <-ctx.Done():
    		mu.Lock()
    		if firstErr == nil {
    			firstErr = ctx.Err()
    		}
    		defer mu.Unlock()
    	}
    	return firstErr
    }
    
    // MakeBucket - creates a new bucket across all serverPools simultaneously
    // even if one of the sets fail to create buckets, we proceed all the successful
    // operations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    func AllowMissingModuleImports() {
    	if initialized {
    		panic("AllowMissingModuleImports after Init")
    	}
    	allowMissingModuleImports = true
    }
    
    // makeMainModules creates a MainModuleSet and associated variables according to
    // the given main modules.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			return fmt.Errorf("PodSchedulingContext object with UID %s is not owned by Pod %s/%s", schedulingCtx.UID, pod.Namespace, pod.Name)
    		}
    	}
    	p.schedulingCtx = schedulingCtx
    	return nil
    }
    
    // publish creates or updates the PodSchedulingContext object, if necessary.
    // Must not be called concurrently.
    func (p *podSchedulingState) publish(ctx context.Context, pod *v1.Pod, clientset kubernetes.Interface) error {
    	if !p.isDirty() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. src/runtime/asm_amd64.s

    // debugCallV2 is the entry point for debugger-injected function
    // calls on running goroutines. It informs the runtime that a
    // debug call has been injected and creates a call frame for the
    // debugger to fill in.
    //
    // To inject a function call, a debugger should:
    // 1. Check that the goroutine is in state _Grunning and that
    //    there are at least 256 bytes free on the stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	getitimer(which int, currValue *Itimerval) (err error)
    //sys	setitimer(which int, newValue *Itimerval, oldValue *Itimerval) (err error)
    
    // MakeItimerval creates an Itimerval from interval and value durations.
    func MakeItimerval(interval, value time.Duration) Itimerval {
    	return Itimerval{
    		Interval: NsecToTimeval(interval.Nanoseconds()),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			if out.ResourceVersion != tc.expectResponseRV {
    				t.Errorf("resourceVersion in list response want=%s, got=%s", tc.expectResponseRV, out.ResourceVersion)
    			}
    		})
    	}
    }
    
    // seedMultiLevelData creates a set of keys with a multi-level structure, returning a resourceVersion
    // from before any were created along with the full set of objects that were persisted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    // pod lock.
    func (p *podWorkers) cleanupPodUpdates(uid types.UID) {
    	if ch, ok := p.podUpdates[uid]; ok {
    		close(ch)
    	}
    	delete(p.podUpdates, uid)
    }
    
    // requeueLastPodUpdate creates a new pending pod update from the most recently
    // executed update if no update is already queued, and then notifies the pod
    // worker goroutine of the update. This method must be called while holding
    // the pod lock.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    // (temp) directory.
    var testGOROOT string
    
    var testGOCACHE string
    
    var testGo string
    var testTmpDir string
    var testBin string
    
    // The TestMain function creates a go command for testing purposes and
    // deletes it after the tests have been run.
    func TestMain(m *testing.M) {
    	// When CMDGO_TEST_RUN_MAIN is set, we're reusing the test binary as cmd/go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top