Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for aloop (0.26 sec)

  1. src/cmd/link/internal/ld/data.go

    	if outer != 0 {
    		off += ldr.SymValue(s) - ldr.SymValue(outer)
    		s = outer
    	}
    	return s, off
    }
    
    // relocsym resolve relocations in "s", updating the symbol's content
    // in "P".
    // The main loop walks through the list of relocations attached to "s"
    // and resolves them where applicable. Relocations are often
    // architecture-specific, requiring calls into the 'archreloc' and/or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. tensorflow/c/c_api.cc

      TF_ImportGraphDefResults* results =
          TF_GraphImportGraphDefWithResults(graph, graph_def, options, status);
      TF_DeleteImportGraphDefResults(results);
    }
    
    // While loop functions -------------------------------------------------------
    
    namespace {
    
    #if !defined(IS_MOBILE_PLATFORM) && !defined(IS_SLIM_BUILD)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    				"CN=leaf -> CN=inter c -> CN=inter b -> CN=inter a -> CN=root",
    			},
    		},
    		{
    			// Build the following graph, which contains a cross-signature loop
    			// (A and C cross sign each other). Paths that include the A -> C -> A
    			// (and vice versa) loop should be ignored, resulting in the paths:
    			//   * Trust Anchor -> A -> B -> EE
    			//   * Trust Anchor -> C -> B -> EE
    			//   * Trust Anchor -> A -> C -> B -> EE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    	client := fake.NewSimpleClientset(set)
    	om, _, ssc := setupController(client)
    	om.SetUpdateStatefulPodError(apierrors.NewInternalError(errors.New("API server failed")), 0)
    
    	// have to have 1 successful loop first
    	if err := scaleUpStatefulSetControl(set, ssc, om, invariants); err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    	var err error
    	set, err = om.setsLister.StatefulSets(set.Namespace).Get(set.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          return failure();
        }
        return success();
      }
    };
    
    class ConvertReduceOpToTfAll
        : public ConvertReduceOpToTfOp<mhlo::AndOp, TF::AllOp, TF::LogicalAndOp> {
     public:
      using ConvertReduceOpToTfOp<mhlo::AndOp, TF::AllOp,
                                  TF::LogicalAndOp>::ConvertReduceOpToTfOp;
    
      LogicalResult MatchInitValue(Value init_value) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector_test.go

    				}
    			}
    
    			{
    				var actualEvents []string
    				// drain sent events
    			loop:
    				for {
    					select {
    					case event := <-ctx.eventRecorder.Events:
    						actualEvents = append(actualEvents, event)
    					default:
    						break loop
    					}
    				}
    				if !reflect.DeepEqual(actualEvents, s.events) {
    					ctx.t.Logf("expected:\n%s", strings.Join(s.events, "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    		res, err := c.Head(ts.URL)
    		if err != nil {
    			t.Errorf("error on loop %d: %v", i, err)
    			continue
    		}
    		if e, g := "123", res.Header.Get("Content-Length"); e != g {
    			t.Errorf("loop %d: expected Content-Length header of %q, got %q", i, e, g)
    		}
    		if e, g := int64(123), res.ContentLength; e != g {
    			t.Errorf("loop %d: expected res.ContentLength of %v, got %v", i, e, g)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      return IdentityArithmeticOpFolder<AddV2Op>(*this, operands);
    }
    
    //===----------------------------------------------------------------------===//
    // AllOp
    //===----------------------------------------------------------------------===//
    
    LogicalResult AllOp::verify() {
      AllOp op = *this;
      return VerifyReductionInputAndDims(op.getInput(), op.getReductionIndices(),
                                         op.getLoc());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    		}
    	}
    </pre>
    
    <h3 id="Continue_statements">Continue statements</h3>
    
    <p>
    A "continue" statement begins the next iteration of the
    innermost <a href="#For_statements">"for" loop</a> at its post statement.
    The "for" loop must be within the same function.
    </p>
    
    <pre class="ebnf">
    ContinueStmt = "continue" [ Label ] .
    </pre>
    
    <p>
    If there is a label, it must be that of an enclosing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"lock":                                 "\U0001f512",
    	"lock_with_ink_pen":                    "\U0001f50f",
    	"lollipop":                             "\U0001f36d",
    	"long_drum":                            "\U0001fa98",
    	"loop":                                 "\u27bf",
    	"lotion_bottle":                        "\U0001f9f4",
    	"lotus_position":                       "\U0001f9d8",
    	"lotus_position_man":                   "\U0001f9d8\u200d\u2642\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
Back to top