Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for chancap (0.11 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    				}
    			}
    		}
    	}
    
    	// Append any usage of the go versions of ELF save/restore
    	// functions to the end of the callstub list to minimize
    	// chances a trampoline might be needed.
    	stubs = append(stubs, abifuncs...)
    
    	// Put stubs at the beginning (instead of the end).
    	// So when resolving the relocations to calls to the stubs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    	if allInteger(x.typ) || isUntyped(x.typ) && xval != nil && xval.Kind() == constant.Int {
    		// The lhs is of integer type or an untyped constant representable
    		// as an integer. Nothing to do.
    	} else {
    		// shift has no chance
    		check.errorf(x, InvalidShiftOperand, invalidOp+"shifted operand %s must be integer", x)
    		x.mode = invalid
    		return
    	}
    
    	// spec: "The right operand in a shift expression must have integer type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    </component>
    ----
    
    [WARNING]
    ====
    For the `pgp` and `trusted-key` elements, Gradle _requires_ full fingerprint IDs (e.g. `b801e2f8ef035068ec1139cc29579f18fa8fd93b` instead of a long ID `29579f18fa8fd93b`).
    This minimizes the chance of a https://en.wikipedia.org/wiki/Collision_attack[collision attack].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    		return false, err
    	}
    	return true, nil
    }
    
    // Add adds a pod to the active queue. It should be called only when a new pod
    // is added so there is no chance the pod is already in active/unschedulable/backoff queues
    func (p *PriorityQueue) Add(logger klog.Logger, pod *v1.Pod) error {
    	p.lock.Lock()
    	defer p.lock.Unlock()
    
    	pInfo := p.newQueuedPodInfo(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // individual edges to contract.  Instead, we will make decisions on these
      // important edges then make decisions on all other edges, causing the highest
      // chance of all most important edges to be contracted.
      //
      // An example of where this might occur is with a digraph:
      // {A -> B, B -> C, A -> X, X -> C} where B is a Size operation and X is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    		// innermost frame, that the SPWRITE function voluntarily preempted itself on entry
    		// during the stack growth check. In that case, the function has
    		// not yet had a chance to do any writes to SP and is safe to unwind.
    		// isAsyncSafePoint does not allow assembly functions to be async preempted,
    		// and preemptPark double-checks that SPWRITE functions are not async preempted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    	letterIdxMax  = 63 / letterIdxBits   // # of letter indices fitting in 63 bits
    )
    
    // Random number state.
    // We generate random temporary file names so that there's a good
    // chance the file doesn't exist yet.
    var (
    	randN  uint32
    	randmu sync.Mutex
    )
    
    // Temp files created in default Tmp dir
    var globalTestTmpDir = os.TempDir()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. src/go/build/build.go

    		// tried records the location of unsuccessful package lookups
    		var tried struct {
    			vendor []string
    			goroot string
    			gopath []string
    		}
    
    		// Vendor directories get first chance to satisfy import.
    		if mode&IgnoreVendor == 0 && srcDir != "" {
    			searchVendor := func(root string, isGoroot bool) bool {
    				sub, ok := ctxt.hasSubdir(root, srcDir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    			if err := test.validate(client.ConnectionState()); err != nil {
    				t.Errorf("validate callback returned error: %s", err)
    			}
    		}
    
    		// If the server sent us an alert after our last flight, give it a
    		// chance to arrive.
    		if write && test.renegotiationExpectedToFail == 0 {
    			if err := peekError(client); err != nil {
    				t.Errorf("final Read returned an error: %s", err)
    			}
    		}
    	}()
    
    	if !write {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    		return true
    	}
    	if onlyReplaceFailedPods(job) {
    		return p.Status.Phase == v1.PodFailed
    	}
    	// Count deleted Pods as failures to account for orphan Pods that
    	// never have a chance to reach the Failed phase.
    	return p.DeletionTimestamp != nil && p.Status.Phase != v1.PodSucceeded
    }
    
    func findConditionByType(list []batch.JobCondition, cType batch.JobConditionType) *batch.JobCondition {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top