Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 188 for recognizers (0.26 sec)

  1. src/compress/flate/flate_test.go

    	}
    	if h.init(bits2) {
    		t.Fatalf("Given sequence of bits is bad and should not succeed.")
    	}
    }
    
    func TestInvalidEncoding(t *testing.T) {
    	// Initialize Huffman decoder to recognize "0".
    	var h huffmanDecoder
    	if !h.init([]int{1}) {
    		t.Fatal("Failed to initialize Huffman decoder")
    	}
    
    	// Initialize decompressor with invalid Huffman coding.
    	var f decompressor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 11K bytes
    - Viewed (1)
  2. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

              properties:
                apiVersion:
                  description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                  type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                root(":", ":test:") {
                    module("org:bar:1.0")
                    module("org:first-level:1.0")
                }
            }
        }
    
        void "dependency constraint on substituted module is recognized properly"() {
            given:
            def available = featureAvailable()
            repository {
                'org:foo:1.0'()
                'org:foo:1.1'()
                'org:bar:1.0'()
                'org:bar:1.1'()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/iimport.go

    	instanceType
    	unionType
    )
    
    // iImportData imports a package from the serialized package data
    // and returns the number of bytes consumed and a reference to the package.
    // If the export data version is not recognized or the format is otherwise
    // compromised, an error is returned.
    func iImportData(fset *token.FileSet, imports map[string]*types.Package, dataReader *bufio.Reader, path string) (pkg *types.Package, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd.go

    		if err != nil {
    			return nil, false, err
    		}
    	}
    
    	scale := &autoscalingv1.Scale{
    		// Populate apiVersion and kind so conversion recognizes we are already in the desired GVK and doesn't try to convert
    		TypeMeta: metav1.TypeMeta{
    			APIVersion: "autoscaling/v1",
    			Kind:       "Scale",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

              properties:
                apiVersion:
                  description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                  type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGenerator.java

                                    "with different property types: " + a + ", " + b);
                            } // otherwise, it's OK, we recognize them in the same way
                            return a;
                        },
                        LinkedHashMap::new
                    )
                );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. common/config/.golangci.yml

      exclude-dirs:
        - genfiles$
        - vendor$
      # Which files to exclude: they will be analyzed, but issues from them won't be reported.
      # There is no need to include all autogenerated files,
      # we confidently recognize autogenerated files.
      # If it's not, please let us know.
      # "/" will be replaced by current OS file path separator to properly work on Windows.
      # Default: []
      exclude-files:
        - ".*\\.pb\\.go"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. istioctl/pkg/wait/wait.go

    	kind = strings.ReplaceAll(kind, "-", "")
    
    	for _, s := range collections.Pilot.All() {
    		if strings.EqualFold(kind, s.Kind()) {
    			targetSchema = s
    			return nil
    		}
    	}
    	return fmt.Errorf("type %s is not recognized", originalKind)
    }
    
    func countVersions(versionCount map[string]int, configVersion string) {
    	if count, ok := versionCount[configVersion]; ok {
    		versionCount[configVersion] = count + 1
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (1)
Back to top