Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 151 for iterations (0.32 sec)

  1. src/net/http/httputil/reverseproxy_test.go

    				cancel()
    				return nil
    			},
    		})
    
    		req, _ := http.NewRequestWithContext(ctx, "GET", "http://go.dev/", nil)
    		proxyHandler.ServeHTTP(rw, req)
    	}()
    	// Trigger data race while iterating over response headers.
    	// When run with -race, this causes the condition in https://go.dev/issue/65123 often
    	// enough to detect reliably.
    	for _ = range rw.Header() {
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    	// to allocate one here. This will only happen for goroutines that were in a
    	// syscall when the goroutine profile started or for goroutines that manage
    	// to execute before we finish iterating over all the goroutines.
    	if pcbuf == nil {
    		pcbuf = makeProfStack()
    	}
    
    	var u unwinder
    	u.initAt(pc, sp, 0, gp, unwindSilentErrors)
    	n := tracebackPCs(&u, 0, pcbuf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * collection are queried. The file collection is also live, so that it evaluates the above each time the contents
         * of the collection is queried.</p>
         *
         * <p>The returned file collection maintains the iteration order of the supplied paths.</p>
         *
         * <p>The returned file collection maintains the details of the tasks that produce the files, so that these tasks are executed if this file collection is used as an input to some task.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. src/go/build/build.go

    			pkg = pkg[:len(pkg)-len("_test")]
    		}
    
    		if p.Name == "" {
    			p.Name = pkg
    			firstFile = name
    		} else if pkg != p.Name {
    			// TODO(#45999): The choice of p.Name is arbitrary based on file iteration
    			// order. Instead of resolving p.Name arbitrarily, we should clear out the
    			// existing name and mark the existing files as also invalid.
    			badGoFile(name, &MultiplePackageError{
    				Dir:      p.Dir,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Finding the right balance between security and convenience is hard but Gradle will try to let you choose the "right level" for you.
    --
    
    Dependency verification consists of two different and complementary operations:
    
    - _checksum verification_, which allows asserting the integrity of a dependency
    - _signature verification_, which allows asserting the provenance of a dependency
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. cmd/iam.go

    		if len(policyBuf) > maxSVCSessionPolicySize {
    			return auth.Credentials{}, time.Time{}, errSessionPolicyTooLarge
    		}
    	}
    
    	// found newly requested service account, to be same as
    	// parentUser, reject such operations.
    	if parentUser == opts.accessKey {
    		return auth.Credentials{}, time.Time{}, errIAMActionNotAllowed
    	}
    	if siteReplicatorSvcAcc == opts.accessKey && !opts.allowSiteReplicatorAccount {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    			p.chunkOf(ci).allocRange(base, npages)
    			p.update(addr, uintptr(npages), true, true)
    
    			// With that done, it's safe to unlock.
    			unlock(p.mheapLock)
    
    			if !p.test {
    				// Only perform sys* operations if we're not in a test.
    				// It's dangerous to do so otherwise.
    				sysUnused(unsafe.Pointer(addr), uintptr(npages)*pageSize)
    
    				// Update global accounting only when not in test, otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			},
    			wantAZ: map[*corev1.Pod]string{
    				podOverride: "regionOverride/zoneOverride/subzoneOverride",
    			},
    		},
    	}
    
    	for _, tc := range testCases {
    		// If using t.Parallel() you must copy the iteration to a new local variable
    		// https://github.com/golang/go/wiki/CommonMistakes#using-goroutines-on-loop-iterator-variables
    		tc := tc
    		t.Run(tc.name, func(t *testing.T) {
    			t.Parallel()
    			// Setup kube caches
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    // nonadjacent one-page spans to the heap, it will allocate a new two-page
    // span, but there can still be other one-page unswept spans which could be
    // combined into a two-page span.
    //
    // It's critical to ensure that no operations proceed on unswept spans (that would corrupt
    // mark bits in GC bitmap). During GC all mcaches are flushed into the central cache,
    // so they are empty. When a goroutine grabs a new span into mcache, it sweeps it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    
    === Configuring multiple container elements together
    
    When configuring several elements of a container one can group interactions in a block in order to avoid repeating the container's name on each interaction.
    The following example uses a combination of type-safe accessors, the container API and Kotlin delegated properties:
    
    .Container scope
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top