Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 496 for gold (0.05 sec)

  1. guava/src/com/google/common/collect/CompactLinkedHashMap.java

       * <i>should</i> hold {@code expectedSize} elements without rebuilding internal data structures.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
       * @return a new, empty {@code CompactLinkedHashMap} with enough capacity to hold {@code
       *     expectedSize} elements without resizing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/reflect/abi.go

    		// at the top.
    		a.stackBytes = align(a.stackBytes, uintptr(t.Align()))
    		return nil
    	}
    	// Hold a copy of "a" so that we can roll back if
    	// register assignment fails.
    	aOld := *a
    	if !a.regAssign(t, 0) {
    		// Register assignment failed. Roll back any changes
    		// and stack-assign.
    		*a = aOld
    		a.stackAssign(t.Size(), uintptr(t.Align()))
    		return &a.steps[len(a.steps)-1]
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. src/runtime/tracestack.go

    			case traceGoRunning, traceGoSyscall:
    				if getg() == gp || mp.curg == gp {
    					break
    				}
    				fallthrough
    			default:
    				print("runtime: gp=", unsafe.Pointer(gp), " gp.goid=", gp.goid, " status=", gStatusStrings[status], "\n")
    				throw("attempted to trace stack of a goroutine this thread does not own")
    			}
    		}
    	}
    
    	if gp != nil && mp == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/internal/trace/summary.go

    		id := st.Resource.Goroutine()
    		old, new := st.Goroutine()
    		if old == new || old != GoWaiting {
    			continue
    		}
    		unblockEdges = append(unblockEdges, unblockEdge{
    			operator: ev.Goroutine(),
    			operand:  id,
    		})
    	}
    	// Compute the transitive closure of depth 2 of goroutines that have unblocked each other
    	// (starting from goid).
    	gmap := make(map[GoID]struct{})
    	gmap[goid] = struct{}{}
    	for i := 0; i < 2; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

        val rootCa =
          HeldCertificate.Builder()
            .serialNumber(1L)
            .certificateAuthority(1)
            .commonName("root")
            .build()
    
        // Add a good intermediate CA, and have that issue a good certificate to localhost. Prepare an
        // SSL context for an HTTP client under attack. It includes the trusted CA and a pinned
        // certificate.
        val goodIntermediateCa =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

          return rewriter.notifyMatchFailure(
              binary_op, "Operands should have exactly one BroadcastInDim op.");
        }
        // When the operand other than the broadcast op is not a const op, we
        // should not fold broadcast op.
        auto binary_op_const_operand =
            (lhs_bcast_op ? rhs : lhs).template getDefiningOp<mhlo::ConstantOp>();
        if (!binary_op_const_operand) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. src/cmd/trace/regions.go

    			http.Error(w, err.Error(), http.StatusBadRequest)
    			return
    		}
    
    		// Collect all the regions with their goroutines.
    		type region struct {
    			*trace.UserRegionSummary
    			Goroutine           trace.GoID
    			NonOverlappingStats map[string]time.Duration
    			HasRangeTime        bool
    		}
    		var regions []region
    		var maxTotal time.Duration
    		validNonOverlappingStats := make(map[string]struct{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. internal/bucket/object/lock/lock_test.go

    		{
    			metadata: map[string]string{
    				"x-amz-object-lock-legal-hold": "on",
    			},
    			expected: ObjectLegalHold{Status: LegalHoldOn},
    		},
    		{
    			metadata: map[string]string{
    				"x-amz-object-lock-legal-hold": "off",
    			},
    			expected: ObjectLegalHold{Status: LegalHoldOff},
    		},
    		{
    			metadata: map[string]string{
    				"x-amz-object-lock-legal-hold": "X",
    			},
    			expected: ObjectLegalHold{Status: ""},
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. src/internal/trace/oldtrace.go

    	case oldtrace.EvGoCreate:
    		if it.preInit {
    			it.createdPreInit[GoID(ev.Args[0])] = struct{}{}
    			return Event{}, errSkip
    		}
    		mappedType = go122.EvGoCreate
    	case oldtrace.EvGoStart:
    		if it.preInit {
    			mappedType = go122.EvGoStatus
    			mappedArgs = timedEventArgs{ev.Args[0], ^uint64(0), uint64(go122.GoRunning)}
    			delete(it.createdPreInit, GoID(ev.Args[0]))
    		} else {
    			mappedType = go122.EvGoStart
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

        private Try() {
        }
    
        /**
         * Construct a {@code Try} by executing the given operation.
         * The returned object will either hold the result or the exception thrown during the operation.
         * If the callable returns null, then the returned Try instance will hold null as its value.
         */
        public static <U> Try<U> ofFailable(Callable<U> failable) {
            try {
                return Try.successful(failable.call());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top