Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 261 for for1 (0.2 sec)

  1. src/net/http/transport.go

    //
    // Transports should be reused instead of created as needed.
    // Transports are safe for concurrent use by multiple goroutines.
    //
    // A Transport is a low-level primitive for making HTTP and HTTPS requests.
    // For high-level functionality, such as cookies and redirects, see [Client].
    //
    // Transport uses HTTP/1.1 for HTTP URLs and either HTTP/1.1 or HTTP/2
    // for HTTPS URLs, depending on whether the server supports HTTP/2,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. cmd/iam.go

    // policy for the STS credential. The policy mapping can be updated by the
    // administrator.
    //
    // - from `Subject.CommonName` field from the STS request for
    // AssumeRoleWithCertificate. In this case, the policy for the STS credential
    // has the same name as the value of this field.
    //
    // - from special JWT claim from STS request for AssumeRoleWithOIDC API (when
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    }
    
    // XDSUpdater is used for direct updates of the xDS model and incremental push.
    // Pilot uses multiple registries - for example each K8S cluster is a registry
    // instance. Each registry is responsible for tracking a set
    // of endpoints associated with mesh services, and calling the EDSUpdate on changes.
    // A registry may group endpoints for a service in smaller subsets - for example by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    		}
    	}()
    	LookupFieldOrMethod(nil, false, nil, "")
    }
    
    func TestLookupFieldOrMethod(t *testing.T) {
    	// Test cases assume a lookup of the form a.f or x.f, where a stands for an
    	// addressable value, and x for a non-addressable value (even though a variable
    	// for ease of test case writing).
    	var tests = []struct {
    		src      string
    		found    bool
    		index    []int
    		indirect bool
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    	nDescsz uint32
    	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. */
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    		}
    	}()
    	LookupFieldOrMethod(nil, false, nil, "")
    }
    
    func TestLookupFieldOrMethod(t *testing.T) {
    	// Test cases assume a lookup of the form a.f or x.f, where a stands for an
    	// addressable value, and x for a non-addressable value (even though a variable
    	// for ease of test case writing).
    	//
    	// Should be kept in sync with TestMethodSet.
    	var tests = []struct {
    		src      string
    		found    bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     * Lesser General Public License for more details.
     * 
     * You should have received a copy of the GNU Lesser General Public
     * License along with this library; if not, write to the Free Software
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  8. src/runtime/mgcscavenge.go

    // immediately eligible for being backed by huge pages. Note that for the most part these
    // density heuristics are best-effort heuristics. It's totally possible (but unlikely)
    // that a chunk that just became dense is scavenged in the case of a race between memory
    // allocation and scavenging.
    //
    // When synchronously scavenging for the memory limit or for debug.FreeOSMemory, these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    	specialsbits = specialsbits[:pagesPerSpanRoot/8]
    	for i := range specialsbits {
    		// Find set bits, which correspond to spans with specials.
    		specials := atomic.Load8(&specialsbits[i])
    		if specials == 0 {
    			continue
    		}
    		for j := uint(0); j < 8; j++ {
    			if specials&(1<<j) == 0 {
    				continue
    			}
    			// Find the span for this bit.
    			//
    			// This value is guaranteed to be non-nil because having
    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. src/go/types/expr.go

    			// record the type for the array (usually done by check.typ which is not
    			// called for [...]T). We handle [...]T arrays and arrays with invalid
    			// length the same here because it makes sense to "guess" the length for
    			// the latter if we have a composite literal; e.g. for [n]int{1, 2, 3}
    			// where n is invalid for some reason, it seems fair to assume it should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top