Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 88 for iterations (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      return absl::OkStatus();
    }
    
    // Add the backedges to the CFG. Given a backedge, we replace the original
    // source and destination operations by two new operations. Most of the
    // fields of the replacements are copied from the original operations.
    // However,
    // - for the src operation, one output is inserted to the front of the output
    //   list. The type of the output is set to the type of the non-control result
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

       *
       * <p>Modifications to the backing set are read through to the returned map. The returned map
       * supports removal operations if the backing set does. Removal operations write through to the
       * backing set. The returned map does not support put operations.
       *
       * <p><b>Warning:</b> If the function rejects {@code null}, caution is required to make sure the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    			kv.SetIterKey(iter)
    			seenk ^= kv.Uint()
    			kv.SetIterValue(iter)
    			seenv ^= kv.Uint()
    		}
    		if seenk != 0b111 {
    			t.Errorf("iteration yielded keys %b, want %b", seenk, 0b111)
    		}
    		if seenv != 0b1110 {
    			t.Errorf("iteration yielded values %b, want %b", seenv, 0b1110)
    		}
    	}
    
    	// Reset should not allocate.
    	n := int(testing.AllocsPerRun(10, func() {
    		iter.Reset(ValueOf(m2))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	for i := 0; ; i++ {
    		total, live := d.Read()
    		if live < total {
    			break
    		}
    		if i >= 1<<12 {
    			t.Fatalf("Count of live client net.Conns (%d) not lower than total (%d) after %d Do / GC iterations.", live, total, i)
    		}
    
    		req, err := NewRequest("POST", ts.URL, bytes.NewReader(body))
    		if err != nil {
    			t.Fatal(err)
    		}
    		_, err = c.Do(req)
    		if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/validation/validation_test.go

    						},
    					}},
    				},
    			},
    		},
    		expectedError: `spec.matchConstraints.resourceRules[0].operations: Required value, spec.matchConstraints.resourceRules[1].operations: Required value, spec.matchConstraints.excludeResourceRules[0].operations: Required value, spec.matchConstraints.excludeResourceRules[1].operations: Required value`,
    	}, {
    		name: "\"\" is NOT a valid operation",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    			// from the other P's runnext should be the last resort, so if there
    			// are timers to steal do that first.
    			//
    			// We only check timers on one of the stealing iterations because
    			// the time stored in now doesn't change in this loop and checking
    			// the timers for each P more than once with the same value of now
    			// is probably a waste of time.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. fastapi/routing.py

                # it now to a dict.
                # Otherwise, there's no way to extract lazy data that requires attribute
                # access instead of dict iteration, e.g. lazy relationships.
                return res
            return _model_dump(
                res,
                by_alias=True,
                exclude_unset=exclude_unset,
                exclude_defaults=exclude_defaults,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    	tests := []struct {
    		name       string
    		operations []operation
    		want       string
    	}{
    		{
    			name: "add pods to activeQ",
    			operations: []operation{
    				add,
    			},
    			want: `
                scheduler_queue_incoming_pods_total{event="PodAdd",queue="active"} 3
    `,
    		},
    		{
    			name: "add pods to unschedulablePods",
    			operations: []operation{
    				popAndRequeueAsUnschedulable,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. fastapi/applications.py

                Optional[List[Dict[str, Any]]],
                Doc(
                    """
                    A list of tags used by OpenAPI, these are the same `tags` you can set
                    in the *path operations*, like:
    
                    * `@app.get("/users/", tags=["users"])`
                    * `@app.get("/items/", tags=["items"])`
    
                    The order of the tags can be used to specify the order shown in
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

        virtual ~Iterator() {}
    
        virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const {
          return base_;
        }
        // Advance should not be called on beyond-of-range iterators
        // so no component iterators must be beyond end of range, either.
        virtual void Advance() {
          assert(!AtEnd());
          ++current2_;
          if (current2_ == end2_) {
            current2_ = begin2_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
Back to top