Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 328 for unusual (1.07 sec)

  1. src/runtime/sys_linux_amd64.s

    	// If no traceback function, do usual sigtramp.
    	MOVQ	runtime·cgoTraceback(SB), AX
    	TESTQ	AX, AX
    	JZ	sigtramp
    
    	// If no traceback support function, which means that
    	// runtime/cgo was not linked in, do usual sigtramp.
    	MOVQ	_cgo_callers(SB), AX
    	TESTQ	AX, AX
    	JZ	sigtramp
    
    	// Figure out if we are currently in a cgo call.
    	// If not, just do usual sigtramp.
    	get_tls(CX)
    	MOVQ	g(CX),AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. pkg/slices/slices_test.go

    func TestEqual(t *testing.T) {
    	tests := []struct {
    		name string
    		s1   []int
    		s2   []int
    		want bool
    	}{
    		{"Empty Slices", []int{}, []int{}, true},
    		{"Equal Slices", []int{1, 2, 3}, []int{1, 2, 3}, true},
    		{"Unequal Slices", []int{1, 2, 3}, []int{3, 2, 1}, false},
    		{"One Empty Slice", []int{}, []int{1, 2, 3}, false},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			got := Equal(tt.s1, tt.s2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/reflect/deepequal.go

    //
    // In general DeepEqual is a recursive relaxation of Go's == operator.
    // However, this idea is impossible to implement without some inconsistency.
    // Specifically, it is possible for a value to be unequal to itself,
    // either because it is of func type (uncomparable in general)
    // or because it is a floating-point NaN value (not equal to itself in floating-point comparison),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_ppc64x.s

    	MOVD	LR, R10
    
    	// We're coming from C code, initialize R0
    	MOVD	$0, R0
    
    	// If no traceback function, do usual sigtramp.
    	MOVD	runtime·cgoTraceback(SB), R6
    	CMP	$0, R6
    	BEQ	sigtramp
    
    	// If no traceback support function, which means that
    	// runtime/cgo was not linked in, do usual sigtramp.
    	MOVD	_cgo_callers(SB), R6
    	CMP	$0, R6
    	BEQ	sigtramp
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. pilot/pkg/xds/workload_test.go

    		createService(s, "svc1", "default", map[string]string{"app": "sa"})
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod2")
    		// Creating a pod in the service should send an update as usual
    		createPod(s, "pod", "sa", "127.0.0.1", "node")
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod")
    
    		// Make service not select workload should also update things
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/tool/tool.go

    				// that we're impersonating dist list if knowing that becomes important?
    				telemetry.Inc("go/subcommand:tool-dist")
    				return
    			}
    		}
    
    		telemetry.Inc("go/subcommand:tool-unknown")
    		// Emit the usual error for the missing tool.
    		_ = base.Tool(toolName)
    	} else {
    		// Increment a counter for the tool subcommand with the tool name.
    		telemetry.Inc("go/subcommand:tool-" + toolName)
    	}
    
    	if toolN {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/v1/PrecompiledScriptTemplates.kt

    }
    
    
    /**
     * Script template definition for precompiled Kotlin scripts targeting [Project] instances.
     *
     * A precompiled script is a script compiled as part of a regular Kotlin source-set and distributed
     * in the usual way, java class files packaged in some library, meant to be consumed as a binary
     * Gradle plugin.
     *
     * The Gradle plugin id by which the precompiled script can be referenced is derived from its name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. src/internal/types/testdata/examples/methods.go

    // Type parameters may be left blank if they are not needed:
    func (t T2[A, _, C]) m4() (A, C) { return t.a, t.c }
    func (t T2[_, _, X]) m5() X { return t.c }
    func (t T2[_, _, _]) m6() {}
    
    // As usual, blank names may be used for any object which we don't care about
    // using later. For instance, we may write an unnamed method with a receiver
    // that cannot be accessed:
    func (_ T2[_, _, _]) _() int { return 42 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. android/guava-testlib/test/com/google/common/testing/EqualsTesterTest.java

        } catch (AssertionFailedError e) {
          assertErrorMessage(e, "foo [group 1, item 1] must be Object#equals to bar [group 1, item 2]");
          return;
        }
        fail("should failed because of unequal objects in the same equality group");
      }
    
      public void testTransitivityBrokenAcrossEqualityGroups() {
        EqualsTester tester =
            new EqualsTester()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:49:06 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. internal/crypto/sse-s3.go

    		Name:           keyID,
    		Ciphertext:     kmsKey,
    		AssociatedData: kms.Context{bucket: path.Join(bucket, object)},
    	})
    	if err != nil {
    		return key, err
    	}
    	err = key.Unseal(unsealKey, sealedKey, s3.String(), bucket, object)
    	return key, err
    }
    
    // UnsealObjectsKeys extracts and decrypts all sealed object keys
    // from the metadata using the KMS and returns the decrypted object
    // keys.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top