Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,301 for Requires (0.4 sec)

  1. platforms/software/build-init/build.gradle.kts

        integTestImplementation(libs.jetty)
    
        testRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.  Toolchain usage requires JVM distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/tasks/wrapper/internal/*")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/PropertyValidationAccess.java

        private PropertyValidationAccess() {
            ServiceRegistryBuilder builder = ServiceRegistryBuilder.builder().displayName("Global services");
            // Should reuse `GlobalScopeServices` here, however this requires a bunch of stuff in order to discover the plugin service registries
            // For now, re-implement the discovery here
            builder.provider(new ServiceRegistrationProvider() {
                @SuppressWarnings("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirVisibilityChecker.kt

            }
    
            return null
        }
    
        override fun isPublicApi(symbol: KaSymbolWithVisibility): Boolean {
            require(symbol is KaFirSymbol<*>)
            val declaration = symbol.firSymbol.fir as? FirMemberDeclaration ?: return false
    
            // Inspecting visibility requires resolving to status
            declaration.lazyResolveToPhase(FirResolvePhase.STATUS)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/godebug_default.txt

    go 1.21
    use .
    use ./q
    
    -- go.work.20 --
    go 1.20
    use .
    use ./q
    
    -- go.mod.21 --
    go 1.21
    module m
    require q v1.0.0
    replace q => ./q
    require rsc.io/panicnil v1.0.0
    
    -- go.mod.20 --
    go 1.20
    module m
    require q v1.0.0
    replace q => ./q
    require rsc.io/panicnil v1.0.0
    
    -- p.go --
    //go:debug randautoseed=0
    
    package main
    
    func main() {
    	panic(nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

                project.extensions.extraProperties["myProperty"] = "hello"
            """
    
            // Requires a sub-project
            file("a/build.gradle.kts") << """
                val myProperty: $type by project
                println("myProperty: " + myProperty) // actual access to the value is required to trigger a lookup
            """
    
            when:
            isolatedProjectsFails("help")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. manifests/charts/gateway/values.yaml

        sidecar.istio.io/inject: "true"
    
      # Define the security context for the pod.
      # If unset, this will be automatically set to the minimum privileges required to bind to port 80 and 443.
      # On Kubernetes 1.22+, this only requires the `net.ipv4.ip_unprivileged_port_start` sysctl.
      securityContext: {}
      containerSecurityContext: {}
    
      service:
        # Type of service. Set to "None" to disable the service entirely
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/go/types/conversions.go

    					return true
    				}
    				// check != nil
    				if cause != nil {
    					// TODO(gri) consider restructuring versionErrorf so we can use it here and below
    					*cause = "conversion of slice to array requires go1.20 or later"
    				}
    				return false
    			}
    		case *Pointer:
    			if a, _ := under(a.Elem()).(*Array); a != nil {
    				if Identical(s.Elem(), a.Elem()) {
    					if check == nil || check.allowVersion(x, go1_17) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. internal/bucket/versioning/versioning.go

    	// MFADelete State    `xml:"MFADelete,omitempty"` // not supported yet.
    	Status State `xml:"Status,omitempty"`
    	// MinIO extension - allows selective, prefix-level versioning exclusion.
    	// Requires versioning to be enabled
    	ExcludedPrefixes []ExcludedPrefix `xml:",omitempty"`
    	ExcludeFolders   bool             `xml:",omitempty"`
    }
    
    // Validate - validates the versioning configuration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. security/pkg/server/ca/authenticate/kubeauth/kube_jwt.go

    	}
    	if id.PodServiceAccount == "" {
    		return nil, fmt.Errorf("failed to parse the JWT; service account required")
    	}
    	if id.PodNamespace == "" {
    		return nil, fmt.Errorf("failed to parse the JWT; namespace required")
    	}
    	return &security.Caller{
    		AuthSource:     security.AuthSourceIDToken,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/swig/swig_test.go

    		return
    	}
    	t.Logf("found swig version %d.%d.%d", major, minor, patch)
    	if major < 3 || (major == 3 && minor == 0 && patch < 6) {
    		t.Skip("test requires swig 3.0.6 or later")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:38:14 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top