Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,741 for Applied (0.14 sec)

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

         *
         * [LENIENT] should be chosen if type errors are expected and should be treated as type holes that can be satisfied by any other type.
         * However, caution should be applied when using [LENIENT], as the policy can swallow type errors which should have been dealt with
         * explicitly. In most cases, explicit type error handling should be preferred.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_pgo_auto.txt

    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # use default.pgo for a single main package
    go build -n -pgo=auto -o a1.exe ./a/a1
    stderr 'preprofile.*-i.*default\.pgo'
    stderr 'compile.*-pgoprofile=.*a1.go'
    
    # check that pgo applied to dependencies
    stderr 'compile.*-p test/dep.*-pgoprofile=.*'
    
    # check that pgo appears in build info
    # N.B. we can't start the stdout check with -pgo because the script assumes that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/addons/dns/dns.go

    		return nil
    	}
    
    	if err := createCoreDNSAddon(coreDNSDeploymentBytes, coreDNSServiceBytes, coreDNSConfigMapBytes, client); err != nil {
    		return err
    	}
    	fmt.Fprintln(out, "[addons] Applied essential addon: CoreDNS")
    	return nil
    }
    
    func createCoreDNSAddon(deploymentBytes, serviceBytes, configBytes []byte, client clientset.Interface) error {
    	coreDNSConfigMap := &v1.ConfigMap{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    [%autowidth.stretch]
    |===
    | Name | Description
    
    | `buildCache`
    | The build cache configuration.
    
    | `plugins`
    | The container of plugins that have been applied to the settings.
    
    | `rootDir`
    | The root directory of the build. The root directory is the project directory of the root project.
    
    | `rootProject`
    | The root project of the build.
    
    | `settings`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. tests/integration/pilot/cni/cniversionskew_test.go

    			}
    			for _, v := range versions {
    				installCNIOrFail(t, v)
    				podFetchFn := kube.NewSinglePodFetch(t.Clusters().Default(), i.Settings().SystemNamespace, "k8s-app=istio-cni-node")
    				// Make sure CNI pod is using image with applied version.
    				retry.UntilSuccessOrFail(t, func() error {
    					pods, err := podFetchFn()
    					if err != nil {
    						return fmt.Errorf("failed to get CNI pods %v", err)
    					}
    					if len(pods) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. pkg/kubelet/network/dns/dns_test.go

    			resultSearch: []string{"testNS.svc.TEST", "svc.TEST", "TEST", "AAA", "BBB"},
    			events:       []string{"Search Line limits were exceeded, some search paths have been omitted, the applied search line is: testNS.svc.TEST svc.TEST TEST AAA BBB"},
    		},
    
    		{
    			desc:         "valid: 2048 characters in search path list",
    			hostNames:    searchPathList2048Chars,
    			resultSearch: searchPathList2048Chars,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            ["project"].toSet() == project.stepResults.keySet().collect { it.stepIdentifier.key }.toSet()
    
            and: 'conventions get properly applied'
            // check the conventions in the resolution results, they should be there, and it is independent of the DOM overlay
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

    import org.gradle.api.provider.Provider
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.kotlin.dsl.*
    
    
    // `generatePrecompiledScriptPluginAccessors` task invokes this method without `gradle.build-environment` applied
    fun Project.getBuildEnvironmentExtension(): BuildEnvironmentExtension? = extensions.findByType(BuildEnvironmentExtension::class.java)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. pkg/config/mesh/mesh.go

    	if err := yaml.Unmarshal([]byte(yamlText), &mp); err != nil {
    		return nil, err
    	}
    	return mp, nil
    }
    
    // ApplyMeshConfig returns a new MeshConfig decoded from the
    // input YAML with the provided defaults applied to omitted configuration values.
    func ApplyMeshConfig(yaml string, defaultConfig *meshconfig.MeshConfig) (*meshconfig.MeshConfig, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    //
    // See the documentation of the fmt package for the complete set of
    // format operators and their operand types.
    //
    // # Examples
    //
    // The %d format operator requires an integer operand.
    // Here it is incorrectly applied to a string:
    //
    //	fmt.Printf("%d", "hello") // fmt.Printf format %d has arg "hello" of wrong type string
    //
    // A call to Printf must have as many operands as there are "verbs" in
    // the format string, not too few:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top