Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 106 for continued (1.39 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

    std::vector<std::pair<string, string>> GraphEdges(const Graph& graph) {
      std::vector<std::pair<string, string>> edges;
      for (const Edge* edge : graph.edges()) {
        if (edge->src()->IsSource() || edge->dst()->IsSink()) continue;
        edges.emplace_back(
            absl::StrCat(edge->src()->name(), ":", edge->src_output()),
            absl::StrCat(edge->dst()->name(), ":", edge->dst_input()));
      }
      std::sort(edges.begin(), edges.end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    		if m == 0 {
    			switch p.As {
    			case obj.APCALIGN, obj.APCALIGNMAX:
    				m = obj.AlignmentPadding(int32(pc), p, ctxt, cursym)
    				break
    			case obj.ANOP, obj.AFUNCDATA, obj.APCDATA:
    				continue
    			default:
    				c.ctxt.Diag("zero-width instruction\n%v", p)
    			}
    		}
    		pc += int64(m)
    
    		if o.flag&LFROM != 0 {
    			c.addpool(p, &p.From)
    		}
    		if o.flag&LTO != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

       * <p>Note that {@code c} is the backing (delegate) collection, rather than the forwarding
       * collection.
       *
       * @param c the delegate (unwrapped) collection of map entries
       * @param o the object that might be contained in {@code c}
       * @return {@code true} if {@code c} contains {@code o}
       */
      static <K extends @Nullable Object, V extends @Nullable Object> boolean containsEntryImpl(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Maps.java

       * <p>Note that {@code c} is the backing (delegate) collection, rather than the forwarding
       * collection.
       *
       * @param c the delegate (unwrapped) collection of map entries
       * @param o the object that might be contained in {@code c}
       * @return {@code true} if {@code c} contains {@code o}
       */
      static <K extends @Nullable Object, V extends @Nullable Object> boolean containsEntryImpl(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		}
    		obj, err := registry.Get(testContext, pod.Name, &metav1.GetOptions{})
    		if tc.expectedNotFound {
    			if err == nil || !errors.IsNotFound(err) {
    				t.Fatalf("Unexpected error: %v", err)
    			}
    			continue
    		}
    		if !tc.expectedNotFound && err != nil {
    			t.Fatalf("Unexpected error: %v", err)
    		}
    		if !tc.expectedNotFound {
    			pod, ok := obj.(*example.Pod)
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // sets the feature build tags for all previous levels as well.
    // For example, GOAMD64=v2 sets the amd64.v1 and amd64.v2 feature flags.
    // This ensures that code making use of v2 features continues to compile
    // when, say, GOAMD64=v4 is introduced.
    // Code handling the absence of a particular feature level
    // should use a negation:
    //
    //	//go:build !amd64.v2
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    				a := c.vregoff(&p.From)
    				m = addpad(pc, a, ctxt, cursym)
    			} else {
    				if p.As != obj.ANOP && p.As != obj.AFUNCDATA && p.As != obj.APCDATA {
    					ctxt.Diag("zero-width instruction\n%v", p)
    				}
    				continue
    			}
    		}
    		pc += int64(m)
    	}
    
    	c.cursym.Size = pc
    
    	/*
    	 * if any procedure is large enough to
    	 * generate a large SBRA branch, then
    	 * generate extra passes putting branches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    				UncountedTerminatedPods: &batch.UncountedTerminatedPods{},
    				FailedIndexes:           ptr.To(""),
    			},
    		},
    		"single failed index due to exceeding the backoff limit per index, the job continues": {
    			enableJobBackoffLimitPerIndex: true,
    			job: batch.Job{
    				TypeMeta:   metav1.TypeMeta{Kind: "Job"},
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    					Selector:             validSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    		t.Errorf("Unexpected unschedulablePlugins: (-want, +got): %s", diagnosis.UnschedulablePlugins)
    	}
    
    	for _, node := range nodes {
    		if node.Name == pod.Name {
    			continue
    		}
    		t.Run(node.Name, func(t *testing.T) {
    			status, found := diagnosis.NodeToStatusMap[node.Name]
    			if !found {
    				t.Errorf("failed to find node %v in %v", node.Name, diagnosis.NodeToStatusMap)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		num[name] = i
    	}
    	buildReg := func(s string) regMask {
    		m := regMask(0)
    		for _, r := range strings.Split(s, " ") {
    			if n, ok := num[r]; ok {
    				m |= regMask(1) << uint(n)
    				continue
    			}
    			panic("register " + r + " not found")
    		}
    		return m
    	}
    
    	// Common individual register masks
    	var (
    		ax         = buildReg("AX")
    		cx         = buildReg("CX")
    		dx         = buildReg("DX")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
Back to top