Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,337 for 3$ (0.16 sec)

  1. src/crypto/sha512/sha512.go

    	switch d.function {
    	case crypto.SHA384:
    		d.h[0] = init0_384
    		d.h[1] = init1_384
    		d.h[2] = init2_384
    		d.h[3] = init3_384
    		d.h[4] = init4_384
    		d.h[5] = init5_384
    		d.h[6] = init6_384
    		d.h[7] = init7_384
    	case crypto.SHA512_224:
    		d.h[0] = init0_224
    		d.h[1] = init1_224
    		d.h[2] = init2_224
    		d.h[3] = init3_224
    		d.h[4] = init4_224
    		d.h[5] = init5_224
    		d.h[6] = init6_224
    		d.h[7] = init7_224
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/coro.go

    func iterSimple(yield func(int) bool) {
    	for range 3 {
    		if !yield(5) {
    			return
    		}
    	}
    }
    
    func iterNested(yield func(int) bool) {
    	next, stop := iter.Pull(iterSimple)
    	for {
    		v, ok := next()
    		if ok {
    			if !yield(v) {
    				stop()
    			}
    		} else {
    			return
    		}
    	}
    }
    
    func iterCallback(yield func(int) bool) {
    	for range 3 {
    		callFromC(func() {})
    		if !yield(5) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pkg/kube/multicluster/secretcontroller_test.go

    			add:  secret1,
    			want: []result{{"config", 1}, {"c0", 3}, {"c1", 6}},
    		},
    		{
    			name: "Add secret s2, with already existing cluster",
    			add:  secret2Cluster0,
    			want: []result{{"config", 1}, {"c0", 3}, {"c1", 6}},
    		},
    		{
    			name:   "Delete secret s2, with already existing cluster",
    			delete: secret2Cluster0,
    			want:   []result{{"config", 1}, {"c0", 3}, {"c1", 6}},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. pkg/proxy/util/utils_test.go

    			ipString:        []string{"fd00:20::1", "2001:db9::3"},
    			wantIPv6:        false,
    			expectCorrect:   nil,
    			expectIncorrect: []string{"fd00:20::1", "2001:db9::3"},
    		},
    		{
    			desc:            "want IPv6 and receive IPv6 only",
    			ipString:        []string{"fd00:20::1", "2001:db9::3"},
    			wantIPv6:        true,
    			expectCorrect:   []string{"fd00:20::1", "2001:db9::3"},
    			expectIncorrect: nil,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

            when:
            configurationCacheRunLenient("broken")
    
            then:
            postBuildOutputContains("Configuration cache entry stored with 3 problems.")
            problems.assertResultHasProblems(result) {
                withProblem("Build file 'build.gradle': line 3: registration of listener on 'Gradle.addListener' is unsupported")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. tests/preload_test.go

    			}
    		}
    	}
    
    	if len(users2[2].Pets) != 3 {
    		t.Errorf("Invalid pet toys found for user 3 got %v", len(users2[2].Pets))
    	} else {
    		sort.Slice(users2[2].Pets, func(i, j int) bool {
    			return users2[2].Pets[i].ID < users2[2].Pets[j].ID
    		})
    
    		for _, pet := range users2[2].Pets[0:2] {
    			if pet.Toy.Name != "" {
    				t.Errorf("No toy should for user %v's pet %v but got %v", 3, pet.Name, pet.Toy.Name)
    			}
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

                        || $license.url.contains("www.opensource.org/licenses/bsd-license") )
    #*      *##set ( $spdx = 'BSD-2-Clause' )
    #*    *##elseif ( $license.name == "BSD-3-Clause"
                        || $license.url.contains("opensource.org/licenses/BSD-3-Clause") )
    #*      *##set ( $spdx = 'BSD-3-Clause' )
    #*    *##elseif ( $license.name == "Public Domain" )
    #*      *##set ( $spdx = 'Public-Domain' )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. security/pkg/util/jwtutil.go

    	}
    
    	return structuredPayload.Aud, true
    }
    
    func parseJwtClaims(token string) (map[string]any, error) {
    	parts := strings.Split(token, ".")
    	if len(parts) != 3 {
    		return nil, fmt.Errorf("token contains an invalid number of segments: %d, expected: 3", len(parts))
    	}
    
    	// Decode the second part.
    	claimBytes, err := DecodeJwtPart(parts[1])
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml

            signal: 2
            startedAt: "2005-01-01T01:01:01Z"
          waiting:
            message: messageValue
            reason: reasonValue
        user:
          linux:
            gid: 2
            supplementalGroups:
            - 3
            uid: 1
        volumeMounts:
        - mountPath: mountPathValue
          name: nameValue
          readOnly: true
          recursiveReadOnly: recursiveReadOnlyValue
      ephemeralContainerStatuses:
      - allocatedResources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. subprojects/core-api/build.gradle.kts

    errorprone {
        disabledChecks.addAll(
            "EmptyBlockTag", // 5 occurrences
            "InlineMeSuggester", // 1 occurrences
            "MalformedInlineTag", // 3 occurrences
            "MixedMutabilityReturnType", // 3 occurrences
            "NonApiType", // 1 occurrences
            "ObjectEqualsForPrimitives", // 2 occurrences
            "ReferenceEquality", // 2 occurrences
            "StringCharset", // 1 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top