Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for reselect (0.24 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    from.reselect();
                }
            } else {
                for (EdgeState incoming : Lists.newArrayList(incomingEdges)) {
                    if (incoming.getDependencyState().getDependency().isEndorsingStrictVersions()) {
                        // pass my own component because we are already in the process of re-selecting it
                        incoming.getFrom().reselect();
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. internal/s3select/select_test.go

    mango`,
    		},
    		{
    			name:  "Select column simplest",
    			query: `select qty from S3Object`,
    			wantResult: `1
    3`,
    		},
    		{
    			name:  "Select column with table name prefix",
    			query: `select S3Object.qty from S3Object`,
    			wantResult: `1
    3`,
    		},
    		{
    			name:  "Select column without table alias",
    			query: `select qty from S3Object s`,
    			wantResult: `1
    3`,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    				}
    			}
    			if tt.ptr == nil {
    				return
    			}
    
    			typ := reflect.TypeOf(tt.ptr)
    			if typ.Kind() != reflect.Pointer {
    				t.Fatalf("%s: unmarshalTest.ptr %T is not a pointer type", tt.Where, tt.ptr)
    			}
    			typ = typ.Elem()
    
    			// v = new(right-type)
    			v := reflect.New(typ)
    
    			if !reflect.DeepEqual(tt.ptr, v.Interface()) {
    				// There's no reason for ptr to point to non-zero data,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    	}
    	if e, a :=
    		[]syncPodRecord{{name: "pod1", updateType: kubetypes.SyncPodUpdate}},
    		processed[types.UID("2-static")]; !reflect.DeepEqual(e, a) {
    		t.Fatalf("unexpected sync pod calls: %s", cmp.Diff(e, a))
    	}
    	if e, a := map[string]types.UID{"pod1_test1": "2-static"}, podWorkers.startedStaticPodsByFullname; !reflect.DeepEqual(e, a) {
    		t.Fatalf("unexpected started static pods: %s", cmp.Diff(e, a))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils_test.go

    	set := newStatefulSet(3)
    	pod := newStatefulSetPod(set, 1)
    	if isRunningAndReady(pod) {
    		t.Error("isRunningAndReady does not respect Pod phase")
    	}
    	pod.Status.Phase = v1.PodRunning
    	if isRunningAndReady(pod) {
    		t.Error("isRunningAndReady does not respect Pod condition")
    	}
    	condition := v1.PodCondition{Type: v1.PodReady, Status: v1.ConditionTrue}
    	podutil.UpdatePodCondition(&pod.Status, &condition)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  6. tensorflow/BUILD

    cc_library(
        name = "grpc",
        visibility = ["//visibility:public"],
        deps = select({
            "//conditions:default": ["@com_github_grpc_grpc//:grpc"],
        }),
    )
    
    cc_library(
        name = "grpc++",
        visibility = ["//visibility:public"],
        deps = select({
            "//conditions:default": ["@com_github_grpc_grpc//:grpc++"],
        }),
    )
    # copybara:comment_end
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. pkg/kubelet/status/status_manager_test.go

    	if !reflect.DeepEqual(newStatus.InitContainerStatuses[0].State, expectUnknownState) {
    		t.Errorf("terminated container state not defaulted: %s", cmp.Diff(newStatus.InitContainerStatuses[0].State, expectUnknownState))
    	}
    	if !reflect.DeepEqual(newStatus.InitContainerStatuses[1].State, firstStatus.InitContainerStatuses[1].State) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

    import org.gradle.internal.logging.text.TreeFormatter;
    import org.gradle.internal.reflect.ClassDetails;
    import org.gradle.internal.reflect.ClassInspector;
    import org.gradle.internal.reflect.JavaPropertyReflectionUtil;
    import org.gradle.internal.reflect.MethodSet;
    import org.gradle.internal.reflect.PropertyAccessorType;
    import org.gradle.internal.reflect.PropertyDetails;
    import org.gradle.internal.service.ServiceLookup;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  9. src/fmt/fmt_test.go

    	{"%s", reflect.ValueOf("hello"), "hello"},
    	{"%q", reflect.ValueOf("hello"), `"hello"`},
    	{"%#04x", reflect.ValueOf(256), "0x0100"},
    
    	// invalid reflect.Value doesn't crash.
    	{"%v", reflect.Value{}, "<invalid reflect.Value>"},
    	{"%v", &reflect.Value{}, "<invalid Value>"},
    	{"%v", SI{reflect.Value{}}, "{<invalid Value>}"},
    
    	// Tests to check that not supported verbs generate an error string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

    import org.objectweb.asm.Type;
    
    import java.lang.reflect.Method;
    import java.lang.reflect.Modifier;
    import java.util.Collection;
    import java.util.LinkedHashSet;
    import java.util.Map;
    import java.util.Set;
    
    import static org.gradle.internal.reflect.Methods.SIGNATURE_EQUIVALENCE;
    import static org.gradle.internal.reflect.PropertyAccessorType.GET_GETTER;
    import static org.gradle.internal.reflect.PropertyAccessorType.IS_GETTER;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
Back to top