Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Whatever (0.7 sec)

  1. internal/s3select/select_test.go

    			query:      `SELECT synonyms from s3object s WHERE 'bar' IN s.synonyms[*] `,
    			wantResult: `{"synonyms":["foo","bar","whatever"]}`,
    		},
    		{
    			name:       "donatello-1",
    			query:      `SELECT * from s3object s WHERE 'bar' in s.synonyms`,
    			wantResult: `{"id":0,"title":"Test Record","desc":"Some text","synonyms":["foo","bar","whatever"]}`,
    		},
    		{
    			name:       "donatello-2",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// Rolling update config params. Present only if DeploymentStrategyType =
    	// RollingUpdate.
    	//---
    	// TODO: Update this to follow our convention for oneOf, whatever we decide it
    	// to be.
    	// +optional
    	RollingUpdate *RollingUpdateDeployment `json:"rollingUpdate,omitempty" protobuf:"bytes,2,opt,name=rollingUpdate"`
    }
    
    type DeploymentStrategyType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    	// Rolling update config params. Present only if DeploymentStrategyType =
    	// RollingUpdate.
    	//---
    	// TODO: Update this to follow our convention for oneOf, whatever we decide it
    	// to be.
    	// +optional
    	RollingUpdate *RollingUpdateDeployment `json:"rollingUpdate,omitempty" protobuf:"bytes,2,opt,name=rollingUpdate"`
    }
    
    // +enum
    type DeploymentStrategyType string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// Rolling update config params. Present only if DeploymentStrategyType =
    	// RollingUpdate.
    	//---
    	// TODO: Update this to follow our convention for oneOf, whatever we decide it
    	// to be.
    	// +optional
    	RollingUpdate *RollingUpdateDeployment `json:"rollingUpdate,omitempty" protobuf:"bytes,2,opt,name=rollingUpdate"`
    }
    
    type DeploymentStrategyType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            }
            if (previousTraversalExclusions.equals(newResolutionFilter)) {
                return true;
            }
            if (doesNotHaveDependencies && !dependenciesMayChange) {
                // whatever the exclude filter, there are no dependencies
                return true;
            }
            cachedFilteredDependencyStates = null;
            // here, we need to check that applying the new resolution filter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    	// if we don't have a proper string, be conservative and return whatever we have
    	if lit.Kind != token.STRING {
    		return lit
    	}
    	s, err := strconv.Unquote(lit.Value)
    	if err != nil {
    		return lit
    	}
    
    	// if the string is an invalid path, return whatever we have
    	//
    	// spec: "Implementation restriction: A compiler may restrict
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

             * Called when the type has any non-static fields.
             */
            public void hasFields() {
            }
    
            /**
             * Handler can claim the property, taking responsibility for generating whatever is required to make the property work.
             * Handler is also expected to take care of validation.
             */
            boolean claimPropertyImplementation(PropertyMetadata property) {
                return false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  8. hack/local-up-cluster.sh

    EVICTION_SOFT=${EVICTION_SOFT:-""}
    EVICTION_PRESSURE_TRANSITION_PERIOD=${EVICTION_PRESSURE_TRANSITION_PERIOD:-"1m"}
    
    # This script uses docker0 (or whatever container bridge docker is currently using)
    # and we don't know the IP of the DNS pod to pass in as --cluster-dns.
    # To set this up by hand, set this flag and change DNS_SERVER_IP.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    func calculateEffectiveGracePeriod(status *podSyncStatus, pod *v1.Pod, options *KillPodOptions) (int64, bool) {
    	// enforce the restriction that a grace period can only decrease and track whatever our value is,
    	// then ensure a calculated value is passed down to lower levels
    	gracePeriod := status.gracePeriod
    	overridden := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    	filepath.WalkDir(dir, func(path string, d fs.DirEntry, err error) error {
    		if suffix := strings.TrimPrefix(path, dir+string(filepath.Separator)); suffix != "" {
    			if suffix == ".git" {
    				// Leave Git metadata in whatever state it was in. It may contain a lot
    				// of files, and it is highly unlikely that a test will try to modify
    				// anything within that directory.
    				return filepath.SkipDir
    			}
    		}
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top