Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Unset (0.04 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDevelocityPluginIntegrationTest.groovy

                            settings.develocity {
                                buildScan.obfuscation.hostname {
                                    // lambda expression
                                    "unset"
                                }
                            }
                        }
                    }
                """
                file('build.gradle.kts') << """
                    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/EnvVariableInjection.groovy

                    test.executer.withEnvironmentVars(variables)
                }
            }
        }
    
        static void checkEnvironmentVariableUnset(String key) {
            // We can't "unset" the variable with the API executer provides, but it isn't necessary, thanks to the filtering in
            // build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt
            if (System.getenv().containsKey(key)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		// | ResourceVersion | AllowWatchBookmarks | SendInitialEvents     |
    		// +=================+=====================+=======================+
    		// | Unset           | true/false          | nil/true/false        |
    		// +-----------------+---------------------+-----------------------+
    		{
    			name: "RV=unset, allowWatchBookmarks=true, sendInitialEvents=nil",
    			opts: listOptions(true, nil, ""),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractDependencyReportTask.java

        private transient Set<Configuration> configurations;
    
        @Override
        public ReportRenderer getRenderer() {
            return renderer;
        }
    
        /**
         * Set the renderer to use to build a report. If unset, AsciiGraphRenderer will be used.
         */
        public void setRenderer(DependencyReportRenderer renderer) {
            this.renderer = renderer;
        }
    
        /**
         * Report model.
         *
         * @since 7.6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    				},
    				Status: api.PersistentVolumeStatus{
    					Phase: api.VolumeBound,
    				},
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"test1", "4Gi", "ROX", "", "Bound", "default/test", "", "<unset>", "", "<unknown>", "<unset>"}}},
    		},
    		{
    			// Test failed
    			pv: api.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test2",
    				},
    				Spec: api.PersistentVolumeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    	phase := obj.Status.Phase
    	if obj.ObjectMeta.DeletionTimestamp != nil {
    		phase = "Terminating"
    	}
    	volumeMode := "<unset>"
    	if obj.Spec.VolumeMode != nil {
    		volumeMode = string(*obj.Spec.VolumeMode)
    	}
    
    	volumeAttributeClass := "<unset>"
    	if obj.Spec.VolumeAttributesClassName != nil {
    		volumeAttributeClass = *obj.Spec.VolumeAttributesClassName
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. common/scripts/setup_env.sh

    # Remove functions from the list of exported variables, they mess up with the `env` command.
    for f in $(declare -F -x | cut -d ' ' -f 3);
    do
      unset -f "${f}"
    done
    
    # Set conditional host mounts
    CONDITIONAL_HOST_MOUNTS="${CONDITIONAL_HOST_MOUNTS:-} "
    container_kubeconfig=''
    
    # docker conditional host mount (needed for make docker push)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

                '-Porg.gradle.java.installations.auto-download=false',
            ]
        }
    
        private static List<String> kotlinDslParameters() {
            return [
                // Having this unset is now deprecated, will default to `false` in Gradle 9.0
                // TODO remove - see https://github.com/gradle/gradle/issues/26810
                '-Dorg.gradle.kotlin.dsl.skipMetadataVersionCheck=false',
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. cmd/handler-api.go

    	defer t.mu.RUnlock()
    
    	return t.syncEvents
    }
    
    func (t *apiConfig) getObjectMaxVersions() int64 {
    	t.mu.RLock()
    	defer t.mu.RUnlock()
    
    	if t.objectMaxVersions <= 0 {
    		// defaults to 'IntMax' when unset.
    		return math.MaxInt64
    	}
    
    	return t.objectMaxVersions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. cni/pkg/cmd/root.go

    		"The value portion of the label which will be set by the race repair if label pods is true")
    	registerStringParameter(constants.RepairNodeName, "", "The name of the managed node (will manage all nodes if unset)")
    	registerStringParameter(constants.RepairSidecarAnnotation, "sidecar.istio.io/status",
    		"An annotation key that indicates this pod contains an istio sidecar. All pods without this annotation will be ignored."+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top