Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 519 for Recognizes (0.15 sec)

  1. pkg/wasm/imagefetcher.go

    			layer = l
    			break
    		}
    	}
    
    	if layer == nil {
    		return nil, fmt.Errorf("could not find the layer of type %s", wasmLayerMediaType)
    	}
    
    	// Somehow go-containerregistry recognizes custom artifact layers as compressed ones,
    	// while the Solo's Wasm layer is actually uncompressed and therefore
    	// the content itself is a raw Wasm binary. So using "Uncompressed()" here result in errors
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/html.go

    		goto Next
    	}
    	{
    		c := buf[0]
    		var ok bool
    		for _, name := range htmlTags {
    			if name[0] == c && len(name) == len(buf) && name == string(buf) {
    				if sep == '\t' {
    					// Goldmark recognizes space here but not tab.
    					// testdata/extra.txt 143.md
    					p.corner = true
    				}
    				ok = true
    				break
    			}
    		}
    		if !ok {
    			goto Next
    		}
    	}
    
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		return t.Delegate.ObjectKinds(obj)
    	}
    	return t.UnstructuredTyper.ObjectKinds(obj)
    }
    
    func (t UnstructuredObjectTyper) Recognizes(gvk schema.GroupVersionKind) bool {
    	return t.Delegate.Recognizes(gvk) || t.UnstructuredTyper.Recognizes(gvk)
    }
    
    type unstructuredCreator struct{}
    
    func (c unstructuredCreator) New(kind schema.GroupVersionKind) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    			ok = false
    		}
    	}
    	return ok
    }
    
    func isTestingType(typ types.Type, testingType string) bool {
    	// No Unalias here: I doubt "go test" recognizes
    	// "type A = *testing.T; func Test(A) {}" as a test.
    	ptr, ok := typ.(*types.Pointer)
    	if !ok {
    		return false
    	}
    	return analysisutil.IsNamedType(ptr.Elem(), "testing", testingType)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_test_context.go

    		scheme.AddKnownTypeWithName(fakeBindingGVK.GroupVersion().WithKind(fakeBindingGVK.Kind+"List"), &FakeList[B]{})
    
    		for _, mapping := range paramMappings {
    			// Skip if it is in the scheme already
    			if scheme.Recognizes(mapping.GroupVersionKind) {
    				continue
    			}
    			scheme.AddKnownTypeWithName(mapping.GroupVersionKind, &unstructured.Unstructured{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/go/doc/comment/parse.go

    func isStdPkg(path string) bool {
    	_, ok := slices.BinarySearch(stdPkgs, path)
    	return ok
    }
    
    // DefaultLookupPackage is the default package lookup
    // function, used when [Parser.LookupPackage] is nil.
    // It recognizes names of the packages from the standard
    // library with single-element import paths, such as math,
    // which would otherwise be impossible to name.
    //
    // Note that the go/doc package provides a more sophisticated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  7. src/strconv/atof.go

    //
    // If s is syntactically well-formed but is more than 1/2 ULP
    // away from the largest floating point number of the given size,
    // ParseFloat returns f = ±Inf, err.Err = ErrRange.
    //
    // ParseFloat recognizes the string "NaN", and the (possibly signed) strings "Inf" and "Infinity"
    // as their respective special floating point values. It ignores case when matching.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

            then:
            impl.recompiledClasses('C', 'C$Inner', 'D', 'D$Inner', 'E', 'E$1', 'F', 'F$Inner')
    
            where:
            visibility << ['public', 'private', '']
        }
    
        def "recognizes change of constant value in annotation"() {
            source api: [
                "class A { public static final int CST = 0; }",
                """import java.lang.annotation.Retention;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/recognizer/recognizer.go

    			skipped = append(skipped, t)
    		}
    	}
    
    	// try recognizers that returned unknown or didn't recognize their data
    	for _, r := range skipped {
    		out, actual, err := r.Decode(data, gvk, into)
    		if err != nil {
    			// if we got an object back from the decoder, and the
    			// error was a strict decoding error (e.g. unknown or
    			// duplicate fields), we still consider the recognizer
    			// to have understood the object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/visitor.go

    	if err != nil {
    		errs = append(errs, err)
    	}
    	if len(errs) == 1 {
    		return errs[0]
    	}
    	return utilerrors.NewAggregate(errs)
    }
    
    // FlattenListVisitor flattens any objects that runtime.ExtractList recognizes as a list
    // - has an "Items" public field that is a slice of runtime.Objects or objects satisfying
    // that interface - into multiple Infos. Returns nil in the case of no errors.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 21.3K bytes
    - Viewed (0)
Back to top