Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 544 for whereIs (0.26 sec)

  1. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests a G being created from within a syscall.
    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). Because the actual
    // m can be reused, it's possible for that m to have never
    // had its P (in _Psyscall) stolen if the runtime doesn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/unique/handle.go

    	}
    	var ptr *T
    	for {
    		// Check the map.
    		wp, ok := m.Load(value)
    		if !ok {
    			// Try to insert a new value into the map.
    			wp, _ = m.LoadOrStore(value, newValue())
    		}
    		// Now that we're sure there's a value in the map, let's
    		// try to get the pointer we need out of it.
    		ptr = wp.Strong()
    		if ptr != nil {
    			break
    		}
    		// The weak pointer is nil, so the old value is truly dead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

                                         argument shapes `[1,2], [] and [1,?]`.
    
    #### Error Handling
    
    Return `py::none()` (equivalent to Python's `None`) if there's an error. An
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    # For this module, the dependency providing package
    # example.net/ambiguous/nested/pkg is unambiguous in Go 1.17 (because only one
    # root of the module graph contains the package), whereas it is ambiguous in
    # Go 1.16 (because two different modules contain plausible packages and Go 1.16
    # does not privilege roots above other dependencies).
    #
    # However, the overall build list is identical for both versions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/internal/trace/event/event.go

    	//
    	// An event may not be both a timed event and have data.
    	HasData bool
    
    	// IsStack indicates that the event represents a complete
    	// stack trace. Specifically, it means that after the arguments
    	// there's a varint length, followed by 4*length varints. Each
    	// group of 4 represents the PC, file ID, func ID, and line number
    	// in that order.
    	IsStack bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

            if (matches.size() > 1) {
                // there's an ambiguity, but we may have several variants matching the requested capabilities.
                // Here we're going to check if in the candidates, there's a single one _strictly_ matching the requested capabilities.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. security/pkg/server/ca/authenticate/oidc_test.go

    			ctx = metadata.NewIncomingContext(ctx, md)
    
    			actualCaller, err := authenticator.Authenticate(security.AuthContext{GrpcContext: ctx})
    			gotErr := err != nil
    			if gotErr != tc.expectErr {
    				t.Errorf("gotErr (%v) whereas expectErr (%v)", gotErr, tc.expectErr)
    			}
    			if gotErr {
    				return
    			}
    			expectedCaller := &security.Caller{
    				AuthSource: security.AuthSourceIDToken,
    				Identities: []string{tc.expectedID},
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_util.h

    // operations placed in devices in `devices`.  For instance a cluster that
    // contains operations solely placed on the CPU will be compiled into a CPU
    // executable by XLA, whereas a cluster that contains operations placed on the
    // CPU and also operations placed on the GPU will be compiled into a GPU
    // executable.
    //
    // Returns a non-OK Status if no unambiguous choice of device exists.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/go/types/under.go

    	// We may have channels that differ in direction only.
    	if x, _ := x.(*Chan); x != nil {
    		if y, _ := y.(*Chan); y != nil && Identical(x.elem, y.elem) {
    			// We have channels that differ in direction only.
    			// If there's an unrestricted channel, select the restricted one.
    			switch {
    			case x.dir == SendRecv:
    				return y
    			case y.dir == SendRecv:
    				return x
    			}
    		}
    	}
    
    	// types are different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

        public static final String TRANSFORM_EXECUTED = 'Transform producer.zip (project :producer) with AugmentTransform'
        public static final String TEXT_WITH_LINE_ENDINGS = "\nhere's a line\nhere's another line\n\n"
    
        abstract String getStatusForReusedOutput()
    
        abstract void execute(String... tasks)
    
        abstract void cleanWorkspace()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top