Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for found$ (0.13 sec)

  1. test/typeparam/orderedmapsimp.dir/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"./a"
    	"bytes"
    	"fmt"
    )
    
    func TestMap() {
    	m := a.New[[]byte, int](bytes.Compare)
    
    	if _, found := m.Find([]byte("a")); found {
    		panic(fmt.Sprintf("unexpectedly found %q in empty map", []byte("a")))
    	}
    
    	for _, c := range []int{'a', 'c', 'b'} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. pkg/credentialprovider/secrets/secrets_test.go

    					Password: "default-password",
    				},
    			},
    			found: true,
    		},
    	}
    
    	for _, testcase := range testcases {
    		t.Run(testcase.name, func(t *testing.T) {
    			keyring, err := MakeDockerKeyring(testcase.pullSecrets, testcase.defaultKeyring)
    			if err != nil {
    				t.Fatalf("error creating secret-based docker keyring: %v", err)
    			}
    
    			authConfigs, found := keyring.Lookup(testcase.image)
    			if found != testcase.found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:11:10 UTC 2020
    - 7.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/pruning_test.go

    	t.Logf("CR created: %#v", foo.UnstructuredContent())
    
    	if _, found, _ := unstructured.NestedFieldNoCopy(foo.Object, "unspecified"); found {
    		t.Errorf("Expected 'unspecified' field to be pruned, but it was not")
    	}
    	if _, found, _ := unstructured.NestedFieldNoCopy(foo.Object, "alpha"); !found {
    		t.Errorf("Expected specified 'alpha' field to stay, but it was pruned")
    	}
    	if _, found, _ := unstructured.NestedFieldNoCopy(foo.Object, "beta"); !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/eastwest-tlsoption.status.yaml.golden

          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:27 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/tls.status.yaml.golden

        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/waypoint.status.yaml.golden

          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 0
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginResolutionResult.java

    public class PluginResolutionResult {
    
        private final PluginResolution found;
        private final ImmutableList<NotFound> notFoundList;
    
        public PluginResolutionResult(@Nullable PluginResolution found, ImmutableList<NotFound> notFoundList) {
            this.found = found;
            this.notFoundList = notFoundList;
        }
    
        /**
         * Record that the plugin was not found in some source of plugins.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. src/os/exec/dot_test.go

    		good := filepath.Join(tmpDir, "execabs-test")
    		if found, err := LookPath(good); err != nil || !strings.HasPrefix(found, good) {
    			t.Fatalf(`LookPath(%#q) = %#q, %v, want \"%s...\", nil`, good, found, err, good)
    		}
    
    		if found, err := LookPath("execabs-test"); err != nil || !strings.HasPrefix(found, good) {
    			t.Fatalf(`LookPath(%#q) = %#q, %v, want \"%s...\", nil`, "execabs-test", found, err, good)
    		}
    
    		cmd := Command("execabs-test")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:19:21 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/multi-gateway.status.yaml.golden

          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 0
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top