Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 591 for Missing (0.21 sec)

  1. security/pkg/nodeagent/caclient/credentials.go

    // added; while a non-nil error will block the request If the token selected is not found, no error
    // will be returned, causing no authorization header to be set. This ensures that even if the JWT
    // token is missing (for example, on a VM that has rebooted, causing the token to be removed from
    // volatile memory), we can still proceed and allow other authentication methods to potentially
    // handle the request, such as mTLS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	if linkseg == nil {
    		return fmt.Errorf("missing __LINKEDIT segment")
    	}
    
    	if _, err := exef.Seek(0, 0); err != nil {
    		return err
    	}
    	if _, err := io.CopyN(outf, exef, int64(linkseg.Offset)); err != nil {
    		return err
    	}
    
    	realdwarf := dwarfm.Segment("__DWARF")
    	if realdwarf == nil {
    		return fmt.Errorf("missing __DWARF segment")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/aether/LoggingRepositoryListener.java

                    event.getArtifact(),
                    event.getException().getMessage());
        }
    
        @Override
        public void artifactDescriptorMissing(RepositoryEvent event) {
            logger.warn("The POM for {} is missing, no dependency information available", event.getArtifact());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 19:10:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/crypto/tls/alert.go

    	alertInappropriateFallback:        "inappropriate fallback",
    	alertUserCanceled:                 "user canceled",
    	alertNoRenegotiation:              "no renegotiation",
    	alertMissingExtension:             "missing extension",
    	alertUnsupportedExtension:         "unsupported extension",
    	alertCertificateUnobtainable:      "certificate unobtainable",
    	alertUnrecognizedName:             "unrecognized name",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    		},
    		// don't count a volume which has storageclass missing
    		{
    			newPod:       csiEBSOneVolPod,
    			existingPods: []*v1.Pod{runningPod, noSCPVCPod},
    			filterName:   "csi",
    			maxVols:      2,
    			driverNames:  []string{ebsCSIDriverName},
    			test:         "don't count pvcs with missing SC towards volume limit",
    			limitSource:  "node",
    		},
    		// don't count multiple volume types
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    				// above and we wouldn't have an error. Since we are in a type
    				// parameter list, the missing types are constraints.
    				if named == typed {
    					errPos = end // position error at closing ]
    					msg = "missing type constraint"
    				} else {
    					msg = "missing type parameter name"
    					// go.dev/issue/60812
    					if len(list) == 1 {
    						msg += " or invalid array length"
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/klibSourceFileProvider/AbstractGetKlibSourceFileNameTest.kt

                        ?.let { packageFqNameStringIndex -> nameResolver.getPackageFqName(packageFqNameStringIndex) }
                        ?.let { fqNameString -> FqName(fqNameString) }
                        ?: fail("Missing packageFqName")
    
    
                    packageFragmentProto.class_List.forEach { classProto ->
                        val classId = ClassId.fromString(nameResolver.getQualifiedClassName(classProto.fqName))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    stdout '^example.net/lazy v0.1.0$'
    
    go mod edit -go=1.16
    ! go list -deps -test -f $MODFMT ./...
    
    stderr -count=1 '^go: example\.net/lazy@v0\.1\.0 requires\n\texample\.com/retract/incompatible@v1\.0\.0: missing go\.sum entry for go\.mod file; to add it:\n\tgo mod download example\.com/retract/incompatible$'
    
    
    # If we combine a Go 1.16 go.sum file...
    go mod tidy -go=1.16
    
    # ...with a Go 1.17 go.mod file...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/cluster/kube/factory.go

    		Topology:  topology,
    	}, nil
    }
    
    func validConfig(cfg cluster.Config) (cluster.Config, error) {
    	// only include kube-specific validation here
    	if cfg.Meta.String(kubeconfigMetaKey) == "" {
    		return cfg, fmt.Errorf("missing meta.%s for %s", kubeconfigMetaKey, cfg.Name)
    	}
    	return cfg, nil
    }
    
    func buildClient(kubeconfig string) (istioKube.CLIClient, error) {
    	rc, err := istioKube.DefaultRestConfig(kubeconfig, "", func(config *rest.Config) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

            // no need to match a missing file hash, as long it is changed from the original one
            val missingFileHash = TestHashCodes.hashCodeFrom(2)
            val originalFileHash = TestHashCodes.hashCodeFrom(1)
            assertThat(
                checkFingerprintGiven(
                    mock {
                        on { hashCodeAndTypeOf(inputFile) } doReturn (missingFileHash to FileType.Missing)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top