Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 549 for Unrecognized (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultComponentSelectorConverter.java

                return DefaultModuleVersionSelector.newSelector(DefaultModuleIdentifier.newId(libraryComponentSelector.getProjectPath(), libraryName), "undefined");
            }
            throw new GradleException("Unrecognized component selector: " + selector);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:59 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testerrors/badsym_test.go

    			t.Error("output should not mention -badflag")
    		}
    
    		// Also check for compiler errors, just in case.
    		// GCC says "unrecognized command line option".
    		// clang says "unknown argument".
    		if bytes.Contains(line, []byte("unrecognized")) || bytes.Contains(output, []byte("unknown")) {
    			t.Error("problem should have been caught before invoking C linker")
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/MaybeCompressedFileResource.java

                } else if (Compression.GZIP.getSupportedExtensions().contains(ext)) {
                    this.resource = new GzipArchiver(resource);
                } else {
                    // Unrecognized extension
                    this.resource = resource;
                }
            }
        }
    
        @Override
        public InputStream read() throws MissingResourceException {
            return resource.read();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  4. src/net/conf.go

    				}
    				// Unrecognized.
    				return fallbackOrder, dnsConf
    			}
    			return hostLookupDNS, dnsConf
    		case "file":
    			if len(lookup) == 2 {
    				if lookup[1] == "bind" {
    					return hostLookupFilesDNS, dnsConf
    				}
    				// Unrecognized.
    				return fallbackOrder, dnsConf
    			}
    			return hostLookupFiles, dnsConf
    		default:
    			// Unrecognized.
    			return fallbackOrder, dnsConf
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/cmd/link/cgo_test.go

    		// Error messages we've seen indicating that LTO is not supported.
    		// These errors come from GCC or clang, not Go.
    		var noLTO = []string{
    			`unrecognized command line option "-flto"`,
    			"unable to pass LLVM bit-code files to linker",
    			"file not recognized: File format not recognized",
    			"LTO support has not been enabled",
    			"linker command failed with exit code",
    			"gcc: can't load library",
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 09 22:13:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crd/conversion.go

    			continue
    		}
    
    		gvk := obj.GroupVersionKind()
    		s, exists := collections.PilotGatewayAPI().FindByGroupVersionAliasesKind(resource.FromKubernetesGVK(&gvk))
    		if !exists {
    			log.Debugf("unrecognized type %v", obj.Kind)
    			others = append(others, obj)
    			continue
    		}
    
    		cfg, err := ConvertObject(s, &obj, "")
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonGreeter.java

            return DaemonMessages.UNABLE_TO_START_DAEMON +
                "\nThis problem might be caused by incorrect configuration of the daemon." +
                "\nFor example, an unrecognized jvm option is used." +
                documentationRegistry.getDocumentationRecommendationFor("details on the daemon", "gradle_daemon") +
                "\nProcess command line: " + Joiner.on(" ").join(startupArgs) +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pkg/features/client_adapter.go

    		default:
    			// The default case implies programmer error.  The same set of prerelease
    			// constants must exist in both component-base and client-go, and each one
    			// must have a case here.
    			panic(fmt.Sprintf("unrecognized prerelease %q of feature %q", spec.PreRelease, name))
    		}
    		out[featuregate.Feature(name)] = converted
    	}
    	return a.mfg.Add(out)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/crypto/tls/alert.go

    	alertMissingExtension:             "missing extension",
    	alertUnsupportedExtension:         "unsupported extension",
    	alertCertificateUnobtainable:      "certificate unobtainable",
    	alertUnrecognizedName:             "unrecognized name",
    	alertBadCertificateStatusResponse: "bad certificate status response",
    	alertBadCertificateHashValue:      "bad certificate hash value",
    	alertUnknownPSKIdentity:           "unknown PSK identity",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/mcs-serviceexport-crd.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
                kind:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 4K bytes
    - Viewed (0)
Back to top