Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for IsSkip (1.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      auto else_results =
          op.ResolveElseFunction(&symbol_table_).getFunctionType().getResults();
      for (auto it : llvm::zip(op.getResults(), then_results, else_results)) {
        // If then and else types do not match, skip refinement for that result.
        if (std::get<1>(it) != std::get<2>(it)) continue;
        changed = RefineResultType(op, std::get<0>(it), std::get<1>(it)) || changed;
      }
      return changed;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    )
    
    func skipIfDNSHijacked(t *testing.T) {
    	// Skip this test if the user is using a shady/ISP
    	// DNS server hijacking queries.
    	// See issues 16732, 16716.
    	isDNSHijackedOnce.Do(func() {
    		addrs, _ := net.LookupHost("dns-should-not-resolve.golang")
    		isDNSHijacked = len(addrs) != 0
    	})
    	if isDNSHijacked {
    		t.Skip("skipping; test requires non-hijacking DNS server")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    		rt := r.Type()
    		if !rt.IsDirectCallOrJump() && !isPLTCall(rt) {
    			continue
    		}
    		rs := r.Sym()
    		if !ldr.AttrReachable(rs) || ldr.SymType(rs) == sym.Sxxx {
    			continue // something is wrong. skip it here and we'll emit a better error later
    		}
    
    		if ldr.SymValue(rs) == 0 && ldr.SymType(rs) != sym.SDYNIMPORT && ldr.SymType(rs) != sym.SUNDEFEXT {
    			// Symbols in the same package are laid out together (if we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			expectedExecutionCount: 2,
    			queueingHintMap: QueueingHintMapPerProfile{
    				"": {
    					NodeAdd: {
    						{
    							// Skip will be ignored
    							PluginName:     "fooPlugin1",
    							QueueingHintFn: queueHintReturnSkip,
    						},
    						{
    							// Skip will be ignored
    							PluginName:     "fooPlugin2",
    							QueueingHintFn: queueHintReturnQueue,
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    // and evicts the pods on the node.
    func TestApplyNoExecuteTaints(t *testing.T) {
    	// TODO: Remove skip once https://github.com/kubernetes/kubernetes/pull/114607 merges.
    	if goruntime.GOOS == "windows" {
    		t.Skip("Skipping test on Windows.")
    	}
    	fakeNow := metav1.Date(2017, 1, 1, 12, 0, 0, 0, time.UTC)
    
    	fakeNodeHandler := &testutil.FakeNodeHandler{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal_test.go

    		},
    	}
    	tc.runTest(t)
    }
    
    func TestUpscaleCapGreaterThanMaxReplicas(t *testing.T) {
    	// TODO: Remove skip once this issue is resolved: https://github.com/kubernetes/kubernetes/issues/124083
    	if goruntime.GOOS == "windows" {
    		t.Skip("Skip flaking test on Windows.")
    	}
    	tc := testCase{
    		minReplicas:     1,
    		maxReplicas:     20,
    		specReplicas:    3,
    		statusReplicas:  3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

              graph_->AddControlEdge(graph_->source_node(), placeholder_node,
                                     true /* skip test for duplicates */);
            }
            if (placeholder_node->out_edges().empty()) {
              graph_->AddControlEdge(placeholder_node, graph_->sink_node(),
                                     true /* skip test for duplicates */);
            }
            remapped_feeds_[{it.first, index}] = placeholder_node->name();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    		replLogOnceIf(ctx, err, bucket)
    		return
    	}
    	// If incoming request is a replication request, it does not need to be re-replicated.
    	if delOpts.ReplicationRequest {
    		return
    	}
    	// Skip replication if this object's prefix is excluded from being
    	// versioned.
    	if !delOpts.Versioned {
    		return
    	}
    	opts := replication.ObjectOpts{
    		Name:         dobj.ObjectName,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    	}
    	for _, pod := range pods {
    		kubelet.podWorkers.UpdatePod(UpdatePodOptions{
    			Pod:        pod,
    			UpdateType: kubetypes.SyncPodSync,
    			StartTime:  time.Now(),
    		})
    		if !got {
    			t.Errorf("Should not skip completed pod %q", pod.Name)
    		}
    		got = false
    	}
    }
    
    func TestDispatchWorkOfActivePod(t *testing.T) {
    	testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				},
    			},
    			enableMatchLabelKeys: true,
    		},
    		{
    			name: "skip if not specified",
    			pod:  st.MakePod().Name("p").Label("foo", "").Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node-a").Label("zone", "zone1").Label("node", "node-a").Obj(),
    			},
    			wantPrefilterStatus: framework.NewStatus(framework.Skip),
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
Back to top