Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 185 for logical (0.28 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

     */
    private enum class ImportKind {
        /** The symbol is available from the local scope and hence cannot be imported or overwritten. */
        LOCAL,
    
        /** Explicitly imported by user. */
        EXPLICIT,
    
        /** Implicitly imported from package. */
        PACKAGE,
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    	})
    
    	return cmd
    }
    
    // mergeKubeletConfigurations merges the provided drop-in configurations with the base kubelet configuration.
    // The drop-in configurations are processed in lexical order based on the file names. This means that the
    // configurations in files with lower numeric prefixes are applied first, followed by higher numeric prefixes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    			if goos == "aix" || goos == "linux" {
    				return true
    			}
    		}
    
    		switch goos {
    		case "android":
    			return true
    		case "dragonfly":
    			// It seems that on Dragonfly thread local storage is
    			// set up by the dynamic linker, so internal cgo linking
    			// doesn't work. Test case is "go test runtime/cgo".
    			return true
    		}
    	}
    
    	switch goos {
    	case "android":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

    import org.gradle.internal.component.model.IvyArtifactName;
    import org.gradle.internal.resource.ExternalResource;
    import org.gradle.internal.resource.local.FileResourceRepository;
    import org.gradle.internal.resource.local.LocallyAvailableExternalResource;
    import org.gradle.internal.resource.transfer.UrlExternalResource;
    import org.gradle.internal.xml.XmlFactories;
    import org.gradle.util.internal.CollectionUtils;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    			); ok {
    				return drs
    			}
    		}
    	} else {
    		// If this is a namespace local DR in the same namespace, this must be meant for this proxy, so we do not
    		// need to worry about overriding other DRs with *.local type rules here. If we ignore this, then exportTo=. in
    		// root namespace would always be ignored
    		if _, drs, ok := MostSpecificHostMatch(service.Hostname,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. src/net/dnsclient_unix_test.go

    		{"foo.onion", true},
    		{"foo.ONION", true},
    		{"foo.ONION.", true},
    
    		// But do resolve *.local address; Issue 16739
    		{"foo.local.", false},
    		{"foo.local", false},
    		{"foo.LOCAL", false},
    		{"foo.LOCAL.", false},
    
    		{"", true}, // will be rejected earlier too
    
    		// Without stuff before onion/local, they're fine to
    		// use DNS. With a search path,
    		// "onion.vegetables.com" can use DNS. Without a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    			return in < jn
    		}
    		return configs[i].CreationTimestamp.Before(configs[j].CreationTimestamp)
    	})
    }
    
    // convertResources is the top level entrypoint to our conversion logic, computing the full state based
    // on KubernetesResources inputs.
    func convertResources(r GatewayResources) IstioResources {
    	// sort HTTPRoutes by creation timestamp and namespace/name
    	sortConfigByCreationTime(r.HTTPRoute)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The `DirectoryBuildCache.setTargetSizeInMB(long)` method has been removed — use link:{groovyDslPath}/org.gradle.caching.local.DirectoryBuildCache.html#org.gradle.caching.local.DirectoryBuildCache:removeUnusedEntriesAfterDays[DirectoryBuildCache.removeUnusedEntriesAfterDays] instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		if mwq, ok := a.(*MethodWithQualifiers); ok {
    			a = mwq.Method
    		}
    
    		// If this is a local name, there may be CV-qualifiers
    		// on the name that really apply to the top level, and
    		// therefore must be discarded when discarding
    		// parameters.  This can happen when parsing a class
    		// that is local to a function.
    		if q, ok := a.(*Qualified); ok && q.LocalName {
    			p := &q.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    		}
    	}
    
    	// supportsRSAFallback returns nil if the certificate and connection support
    	// the static RSA key exchange, and unsupported otherwise. The logic for
    	// supporting static RSA is completely disjoint from the logic for
    	// supporting signed key exchanges, so we just check it as a fallback.
    	supportsRSAFallback := func(unsupported error) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top