Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 339 for Recognizes (0.19 sec)

  1. guava/src/com/google/common/base/Splitter.java

       * Splitter.on(',').split("foo,,bar")} returns an iterable containing {@code ["foo", "", "bar"]}.
       *
       * @param separator the character to recognize as a separator
       * @return a splitter, with default settings, that recognizes that separator
       */
      public static Splitter on(char separator) {
        return on(CharMatcher.is(separator));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. src/net/textproto/reader.go

    			c -= toLower
    		} else if !upper && 'A' <= c && c <= 'Z' {
    			c += toLower
    		}
    		a[i] = c
    		upper = c == '-' // for next time
    	}
    	commonHeaderOnce.Do(initCommonHeader)
    	// The compiler recognizes m[string(byteSlice)] as a special
    	// case, so a copy of a's bytes into a new string does not
    	// happen in this map lookup:
    	if v := commonHeader[string(a)]; v != "" {
    		return v, true
    	}
    	return string(a), true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    			baseErr:          fmt.Errorf("plain error"),
    		},
    		{
    			name:             "decoding objects with unknown GVK fails and returns a bad-request error",
    			typer:            alwaysErrorTyper{},
    			decodedGVK:       nil,
    			decodeIntoObject: &testapigroupv1.Carp{}, // which client-go's scheme doesn't recognize
    			baseErr:          nil,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top