Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for Unrecognized (0.46 sec)

  1. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*    *##elseif ( $license.name == "CDDL + GPLv2 with classpath exception" )
    #*      *##set ( $spdx = 'CDDL+GPLv2-with-classpath-exception' )
    #*    *##else
    #*      *### unrecognized license will require analysis to know obligations
    #*      *##set ( $spdx = 'unrecognized' )
    #*    *##end
    #*    *###
    #*    *### fix project urls that are wrong in pom
    #*    *##if ( $project.url.startsWith( "http://www.eclipse.org/sisu/" ) )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. api/openapi-spec/swagger.json

          "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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_util.h

    //    preferred over CPU.
    //  - XLA devices count as "unrecognized devices".
    //
    // This set of rules above implicitly assume that XLA:GPU can compile all
    // operations in the cluster that XLA:CPU can compile, and if
    // `allow_mixing_unknown_and_cpu` then the unrecognized device can also compile
    // all operations in the cluster that XLA:CPU can compile.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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. 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)
  9. platforms/core-runtime/build-configuration/src/test/groovy/org/gradle/internal/buildconfiguration/UpdateDaemonJvmModifierTest.groovy

            props[DaemonJvmPropertiesDefaults.TOOLCHAIN_VENDOR_PROPERTY] == null
            props[DaemonJvmPropertiesDefaults.TOOLCHAIN_IMPLEMENTATION_PROPERTY] == null
        }
    
        def "existing unrecognized properties are not preserved"() {
            daemonJvmPropertiesFile.text = """
                # this comment is not preserved
                com.example.foo=bar
                ${DaemonJvmPropertiesDefaults.TOOLCHAIN_VERSION_PROPERTY}=15
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/asm/main.go

    	flags.Parse()
    	telemetry.Inc("asm/invocations")
    	telemetry.CountFlags("asm/flag:", *flag.CommandLine)
    
    	architecture := arch.Set(GOARCH, *flags.Shared || *flags.Dynlink)
    	if architecture == nil {
    		log.Fatalf("unrecognized architecture %s", GOARCH)
    	}
    	ctxt := obj.Linknew(architecture.LinkArch)
    	ctxt.Debugasm = flags.PrintOut
    	ctxt.Debugvlog = flags.DebugV
    	ctxt.Flag_dynlink = *flags.Dynlink
    	ctxt.Flag_linkshared = *flags.Linkshared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top