Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of about 10,000 for found$ (0.18 sec)

  1. src/cmd/go/testdata/script/generate.txt

    // license that can be found in the LICENSE file.
    
    // Simple test for go generate.
    
    // We include a build tag that go generate should ignore.
    
    // +build ignore
    
    //go:generate echo Success
    
    package p
    -- generate/alias.go --
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/InjectUtil.java

                if (constructor.getAnnotation(Inject.class) != null) {
                    if (match != null) {
                        // There was a previously found a match. This means a second constructor with `@Inject` has been found.
                        throw new ServiceValidationException(
                            String.format(
                                "Multiple constructor annotated with @Inject for %s.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. test/fixedbugs/bug122.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	// should allow at most 2 sizes
    	a := make([]int, 10, 20, 30, 40); // ERROR "too many|expects 2 or 3 arguments; found 5"
    	_ = a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 18:13:13 UTC 2023
    - 334 bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/GroupRepositoryMetadata.java

            List<Plugin> plugins = getMetadata().getPlugins();
            boolean found = false;
            for (Iterator<Plugin> i = plugins.iterator(); i.hasNext() && !found; ) {
                Plugin plugin = i.next();
                if (plugin.getPrefix().equals(goalPrefix)) {
                    found = true;
                }
            }
            if (!found) {
                Plugin plugin = new Plugin();
                plugin.setPrefix(goalPrefix);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/ProjectDependencyForcingResolver.java

                    if (foundProjectCandidate == null) {
                        // found the first project dependency
                        foundProjectCandidate = candidate;
                    } else {
                        // found more than one
                        if (projectCandidates == null) {
                            projectCandidates = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/algorithm.go

    		for k, prop := range s.Properties {
    			if prop.Default.Object == nil {
    				continue
    			}
    			if _, found := x[k]; !found || isNonNullableNull(x[k], &prop) {
    				x[k] = runtime.DeepCopyJSONValue(prop.Default.Object)
    			}
    		}
    		for k := range x {
    			if prop, found := s.Properties[k]; found {
    				Default(x[k], &prop)
    			} else if s.AdditionalProperties != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 06 03:49:29 UTC 2020
    - 2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/embed_fmt.txt

    # go fmt ignores file not found
    go fmt xnofmt.go
    cmp xnofmt.go xfmt.ref
    ! go build xnofmt.go
    stderr 'xnofmt.go:5:12: pattern missing.txt: no matching files found'
    
    -- xnofmt.go --
    package p
    
    import "embed"
    
    //go:embed missing.txt
    var X  embed.FS
    -- xfmt.ref --
    package p
    
    import "embed"
    
    //go:embed missing.txt
    var X embed.FS
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 19 20:58:35 UTC 2021
    - 348 bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensions.kt

     *
     * If an object with the given [name] is not found, [UnknownDomainObjectException] is thrown.
     * If the object is found but cannot be cast to the expected type [T], [IllegalArgumentException] is thrown.
     *
     * @param name object name
     * @return the object, never null
     * @throws [UnknownDomainObjectException] When the given object is not found.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. internal/event/targetlist_test.go

    			}
    
    			for _, targetID1 := range result {
    				var found bool
    				for _, targetID2 := range testCase.expectedResult {
    					if reflect.DeepEqual(targetID1, targetID2) {
    						found = true
    						break
    					}
    				}
    				if !found {
    					t.Fatalf("test %v: data: expected: %v, got: %v", i+1, testCase.expectedResult, result)
    				}
    			}
    		}
    	}
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 05 10:16:33 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/multirestmapper.go

    			continue
    		}
    		if err != nil {
    			return nil, err
    		}
    
    		// walk the existing values to de-dup
    		for _, curr := range gvrs {
    			found := false
    			for _, existing := range allGVRs {
    				if curr == existing {
    					found = true
    					break
    				}
    			}
    
    			if !found {
    				allGVRs = append(allGVRs, curr)
    			}
    		}
    	}
    
    	if len(allGVRs) == 0 {
    		return nil, &NoResourceMatchError{PartialResource: resource}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.8K bytes
    - Viewed (0)
Back to top