Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for locations (0.29 sec)

  1. src/runtime/mgc.go

    	// allocations are blocked until assists can
    	// happen, we want to enable assists as early as
    	// possible.
    	setGCPhase(_GCmark)
    
    	gcBgMarkPrepare() // Must happen before assists are enabled.
    	gcMarkRootPrepare()
    
    	// Mark all active tinyalloc blocks. Since we're
    	// allocating from these, they need to be black like
    	// other allocations. The alternative is to blacken
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            if (parentInherited != null) {
                extensibleDynamicObject.setParent(parentInherited);
            }
            extensibleDynamicObject.addObject(taskContainer.getTasksAsDynamicObject(), ExtensibleDynamicObject.Location.AfterConvention);
    
            evaluationListener.add(gradle.getProjectEvaluationBroadcaster());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    				},
    				{
    					Address: "de.google.com",
    					Labels:  map[string]string{"foo": "bar", label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    				},
    			},
    			Location:   networking.ServiceEntry_MESH_EXTERNAL,
    			Resolution: networking.ServiceEntry_DNS,
    		},
    	}
    
    	updatedHTTPDNSPort := func() *config.Config {
    		c := updatedHTTPDNS.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const (
    	// A malloc header is functionally a single type pointer, but
    	// we need to use 8 here to ensure 8-byte alignment of allocations
    	// on 32-bit platforms. It's wasteful, but a lot of code relies on
    	// 8-byte alignment for 8-byte atomics.
    	mallocHeaderSize = 8
    
    	// The minimum object size that has a malloc header, exclusive.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    					t.Errorf("Equal(%d, %d, %d) = false", len, x, y)
    				}
    			}
    		}
    	}
    }
    
    // make sure Equal returns false for minimally different strings. The data
    // is all zeros except for a single one in one location.
    func TestNotEqual(t *testing.T) {
    	var size = 128
    	if testing.Short() {
    		size = 32
    	}
    	a := make([]byte, size)
    	b := make([]byte, size)
    
    	for len := 0; len <= size; len++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    		x := NewInt(3)
    		got := testing.AllocsPerRun(100, func() {
    			// NewInt should inline, and all its allocations
    			// can happen on the stack. Passing the result of NewInt
    			// to Add should not cause any of those allocations to escape.
    			x.Add(x, NewInt(n))
    		})
    		if got != 0 {
    			t.Errorf("x.Add(x, NewInt(%d)), wanted 0 allocations, got %f", n, got)
    		}
    	}
    }
    
    func TestFloat64(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Handling graceful termination.
    	stopLock sync.RWMutex
    	stopped  bool
    	stopCh   chan struct{}
    	stopWg   sync.WaitGroup
    
    	clock clock.Clock
    	// timer is used to avoid unnecessary allocations in underlying watchers.
    	timer *time.Timer
    
    	// dispatching determines whether there is currently dispatching of
    	// any event in flight.
    	dispatching bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // -------------------------------
    // pointer validity test
    // good pointer returns 0
    // bad pointer returns 1
    //
    //go:nosplit
    func ptrtest(uintptr) uint64
    
    // Load memory at ptr location with error handling if the location is invalid
    //
    //go:noescape
    func safeload(ptr uintptr) (value uintptr, error uintptr)
    
    const (
    	entrypointLocationOffset = 8 // From function descriptor
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    * Entries added by hand will immediately be accounted for, and appear at the right location after writing the file,
    * The header comments of the file will be preserved, i.e. comments before the root XML node.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    func TestInbound(t *testing.T) {
    	svc := `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se
    spec:
      hosts:
      - foo.bar
      endpoints:
      - address: 1.1.1.1
      location: MESH_INTERNAL
      resolution: STATIC
      ports:
      - name: tcp
        number: 70
        protocol: TCP
      - name: http
        number: 80
        protocol: HTTP
      - name: auto
        number: 81
    ---
    `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top