Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for yield (0.09 sec)

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

         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not
         * look at table entries if it is 0.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    			}
    		case k8s.QueryParamMatchRegularExpression:
    			res[string(qp.Name)] = &istio.StringMatch{
    				MatchType: &istio.StringMatch_Regex{Regex: qp.Value},
    			}
    		default:
    			// Should never happen, unless a new field is added
    			return nil, &ConfigError{Reason: InvalidConfiguration, Message: fmt.Sprintf("unknown type: %q is not supported QueryParams type", tp)}
    		}
    	}
    
    	if len(res) == 0 {
    		return nil, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    	nType   uint32
    }
    
    /* For accessing the fields of r_info. */
    
    /* For constructing r_info from field values. */
    
    /*
     * Relocation types.
     */
    const (
    	ARM_MAGIC_TRAMP_NUMBER = 0x5c000003
    )
    
    /*
     * Symbol table entries.
     */
    
    /* For accessing the fields of st_info. */
    
    /* For constructing st_info from field values. */
    
    /* For accessing the fields of st_other. */
    
    /*
     * ELF header.
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/time/format.go

    //
    // The example for [Time.Format] demonstrates the working of the layout string
    // in detail and is a good reference.
    //
    // When parsing (only), the input may contain a fractional second
    // field immediately after the seconds field, even if the layout does not
    // signify its presence. In that case either a comma or a decimal point
    // followed by a maximal series of digits is parsed as a fractional second.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not
         * look at table entries if it is 0.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    		// LDAR or LWAR
    		p0 := s.Prog(ld)
    		p0.From.Type = obj.TYPE_MEM
    		p0.From.Reg = r0
    		p0.To.Type = obj.TYPE_REG
    		p0.To.Reg = ppc64.REGTMP
    		// If it is a Compare-and-Swap-Release operation, set the EH field with
    		// the release hint.
    		if v.AuxInt == 0 {
    			p0.AddRestSourceConst(0)
    		}
    		// CMP reg1,reg2
    		p1 := s.Prog(cmp)
    		p1.From.Type = obj.TYPE_REG
    		p1.From.Reg = r1
    		p1.To.Reg = ppc64.REGTMP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. tests/query_test.go

    	}
    
    	stmt := dryDB.Clauses(clause.OrderBy{
    		Expression: clause.Expr{SQL: "FIELD(id,?)", Vars: []interface{}{[]int{1, 2, 3}}, WithoutParentheses: true},
    	}).Find(&User{}).Statement
    
    	explainedSQL := dryDB.Dialector.Explain(stmt.SQL.String(), stmt.Vars...)
    	if !regexp.MustCompile("SELECT \\* FROM .*users.* ORDER BY FIELD\\(id,1,2,3\\)").MatchString(explainedSQL) {
    		t.Fatalf("Build Order condition, but got %v", explainedSQL)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	for k, vv := range hdrs {
    		if !httpguts.ValidHeaderFieldName(k) {
    			return fmt.Sprintf("field name %q", k)
    		}
    		for _, v := range vv {
    			if !httpguts.ValidHeaderFieldValue(v) {
    				// Don't include the value in the error,
    				// because it may be sensitive.
    				return fmt.Sprintf("field value for %q", k)
    			}
    		}
    	}
    	return ""
    }
    
    // roundTrip implements a RoundTripper over HTTP.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    	// collected heap) are roots. In practice, this means the fn
    	// field must be scanned.
    	//
    	// Objects with weak handles have only one invariant related
    	// to this function: weak handle specials (which are not in the
    	// garbage collected heap) are roots. In practice, this means
    	// the handle field must be scanned. Note that the value the
    	// handle pointer referenced does *not* need to be scanned. See
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    	},
    	ErrMissingSignTag: {
    		Code:           "AccessDenied",
    		Description:    "Signature header missing Signature field.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingSignHeadersTag: {
    		Code:           "InvalidArgument",
    		Description:    "Signature header missing SignedHeaders field.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMalformedExpires: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top