Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 348 for found$ (0.24 sec)

  1. pilot/pkg/model/push_context_test.go

    	pb := msg.ProtoReflect()
    	md := pb.Descriptor()
    
    	found := sets.New[string]()
    	for i := 0; i < md.Oneofs().Get(0).Fields().Len(); i++ {
    		found.Insert(string(md.Oneofs().Get(0).Fields().Get(i).Name()))
    	}
    	// If this fails, there is a provider added that we have not handled.
    	// DO NOT JUST
    	assert.Equal(t, found, wellknownProviders)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrNoSuchBucketSSEConfig: {
    		Code:           "ServerSideEncryptionConfigurationNotFoundError",
    		Description:    "The server side encryption configuration was not found",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrNoSuchKey: {
    		Code:           "NoSuchKey",
    		Description:    "The specified key does not exist.",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

        def "transform does not execute when dependencies cannot be found"() {
            given:
            mavenHttpRepo.module("unknown", "not-found", "4.3").allowAll().assertNotPublished()
            setupBuildWithTwoSteps()
            buildFile << """
                project(':lib') {
                    dependencies {
                        implementation "unknown:not-found:4.3"
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    			// first round and thus deleted from the map, and then
    			// not found in the second round (double insertion of
    			// the same expr node still just leads to one entry for
    			// that node, and it can only be deleted once).
    			// Be cautious and check for presence of entry.
    			// Example: var e, f = int(1<<""[f]) // go.dev/issue/11347
    			if info, found := check.untyped[x.expr]; found {
    				info.isLhs = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    	v, ok := r.buildListVersion[mPath]
    	if !ok {
    		return "none"
    	}
    	return v
    }
    
    // noneForPath returns a "none" query matching the given module path,
    // or found == false if no such query exists.
    func (r *resolver) noneForPath(mPath string) (nq *query, found bool) {
    	if nq = r.nonesByPath[mPath]; nq != nil {
    		return nq, true
    	}
    	for _, nq := range r.wildcardNones {
    		if nq.matchesPath(mPath) {
    			return nq, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			requestScope = "resource"
    		}
    		if action.AllNamespaces {
    			requestScope = "cluster"
    			operationSuffix = operationSuffix + "ForAllNamespaces"
    			namespaced = ""
    		}
    
    		if kubeVerb, found := toDiscoveryKubeVerb[action.Verb]; found {
    			if len(kubeVerb) != 0 {
    				kubeVerbs[kubeVerb] = struct{}{}
    			}
    		} else {
    			return nil, nil, fmt.Errorf("unknown action verb for discovery: %s", action.Verb)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    		base.Fatalf("go: no modules were found in the current workspace; see 'go help work'")
    	}
    	if dir, name := findAltConfig(base.Cwd()); dir != "" {
    		rel, err := filepath.Rel(base.Cwd(), dir)
    		if err != nil {
    			rel = dir
    		}
    		cdCmd := ""
    		if rel != "." {
    			cdCmd = fmt.Sprintf("cd %s && ", rel)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	r.customStorageLock.Lock()
    	defer r.customStorageLock.Unlock()
    	// this could happen if the create event is merged from create-update events
    	storageMap := r.customStorage.Load().(crdStorageMap)
    	oldInfo, found := storageMap[crd.UID]
    	if !found {
    		return
    	}
    	if apiequality.Semantic.DeepEqual(&crd.Spec, oldInfo.spec) && apiequality.Semantic.DeepEqual(&crd.Status.AcceptedNames, oldInfo.acceptedNames) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    	}
    	args, err := quoted.Split(value)
    	if err != nil {
    		return nil, err
    	}
    	if len(args) == 0 {
    		return nil, errors.New("CC not set and no default found")
    	}
    	if _, err := exec.LookPath(args[0]); err != nil {
    		return nil, fmt.Errorf("C compiler %q not found: %v", args[0], err)
    	}
    	return args[:len(args):len(args)], nil
    }
    
    // gccMachine returns the gcc -m flag to use, either "-m32", "-m64" or "-marm".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. tests/query_test.go

    	}
    
    	if len(users) != 4 {
    		t.Errorf("Four users should be found, instead found %d", len(users))
    	}
    
    	DB.Select("*").Where("name LIKE ?", "subquery%").Where("age >= (?)", DB.
    		Select("AVG(age)").Table("users").Where("name LIKE ?", "subquery%")).Find(&users)
    
    	if len(users) != 2 {
    		t.Errorf("Two users should be found, instead found %d", len(users))
    	}
    }
    
    func TestSubQueryWithRaw(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
Back to top