Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for evacuated (0.21 sec)

  1. src/cmd/compile/internal/types2/expr.go

    			//
    			// Usually (in correct programs), the lhs expression
    			// is in the untyped map. However, it is possible to
    			// create incorrect programs where the same expression
    			// is evaluated twice (via a declaration cycle) such
    			// that the lhs expression type is determined in the
    			// first round and thus deleted from the map, and then
    			// not found in the second round (double insertion of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
      @SuppressWarnings("unchecked")
      // unsafe, comparator() returns a comparator on the specified type
      // TODO(kevinb): evaluate whether or not of().comparator() should return null
      public static <K, V> ImmutableSortedMap<K, V> of() {
        return (ImmutableSortedMap<K, V>) NATURAL_EMPTY_MAP;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. cmd/bucket-handlers.go

    			apiErr := errorCodes.ToAPIErr(ErrInvalidRequest)
    			apiErr.Description = err.Error()
    			writeErrorResponse(ctx, w, apiErr, r.URL)
    			return
    		}
    
    		// if force delete header is set, we need to evaluate the policy anyways
    		// regardless of it being true or not.
    		if s3Error := checkRequestAuthType(ctx, r, policy.ForceDeleteBucketAction, bucket, ""); s3Error != ErrNone {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	Error *string `json:"error,omitempty" protobuf:"bytes,3,opt,name=error"`
    }
    
    // IngressRule represents the rules mapping the paths under a specified host to
    // the related backend services. Incoming requests are first evaluated for a host
    // match, then routed to the backend associated with the matching IngressRuleValue.
    type IngressRule struct {
    	// Host is the fully qualified domain name of a network host, as defined by RFC 3986.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    	OpDiv16: -1 << 15,
    	OpMod16: -1 << 15,
    	OpDiv32: -1 << 31,
    	OpMod32: -1 << 31,
    	OpDiv64: -1 << 63,
    	OpMod64: -1 << 63}
    
    // simplifyBlock simplifies some constant values in b and evaluates
    // branches to non-uniquely dominated successors of b.
    func simplifyBlock(sdom SparseTree, ft *factsTable, b *Block) {
    	for _, v := range b.Values {
    		switch v.Op {
    		case OpSlicemask:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    					// opts.DeletePrefix is used only in the above lifecycle Expiration actions.
    				default:
    					// object has been modified since lifecycle action was previously evaluated
    					isErr = true
    				}
    				if isErr {
    					if goi.VersionID != "" {
    						return goi, VersionNotFound{
    							Bucket:    bucket,
    							Object:    object,
    							VersionID: goi.VersionID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// LoweredGetCallerSP returns the SP of the caller of the current function. arg0=mem
    		{name: "LoweredGetCallerSP", argLength: 1, reg: gp01, rematerializeable: true},
    
    		// LoweredGetCallerPC evaluates to the PC to which its "caller" will return.
    		// I.e., if f calls g "calls" getcallerpc,
    		// the result should be the PC within f that g will return to.
    		// See runtime/stubs.go for a more detailed discussion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // - The array size is (bool(expr) ? 1 : -1), instead of simply
    //
    //     ((expr) ? 1 : -1).
    //
    //   This is to avoid running into a bug in MS VC 7.1, which
    //   causes ((0.0) ? 1 : -1) to incorrectly evaluate to 1.
    
    // StaticAssertTypeEqHelper is used by StaticAssertTypeEq defined in gtest.h.
    //
    // This template is declared, but intentionally undefined.
    template <typename T1, typename T2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // - The array size is (bool(expr) ? 1 : -1), instead of simply
    //
    //     ((expr) ? 1 : -1).
    //
    //   This is to avoid running into a bug in MS VC 7.1, which
    //   causes ((0.0) ? 1 : -1) to incorrectly evaluate to 1.
    
    // StaticAssertTypeEqHelper is used by StaticAssertTypeEq defined in gtest.h.
    //
    // This template is declared, but intentionally undefined.
    template <typename T1, typename T2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	}
    	s, ok := state.(*stateData)
    	if !ok {
    		return nil, errors.New("unable to convert state into stateData")
    	}
    	return s, nil
    }
    
    // Filter invoked at the filter extension point.
    // It evaluates if a pod can fit due to the resources it requests,
    // for both allocated and unallocated claims.
    //
    // For claims that are bound, then it checks that the node affinity is
    // satisfied by the given node.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top