Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 106 for nextch (0.13 sec)

  1. pkg/kube/krt/README.md

    ```go
    ConfigMapCount := krt.NewSingleton[int](func(ctx krt.HandlerContext) *int {
        cms := krt.Fetch(ctx, ConfigMaps)
        return ptr.Of(len(cms))
    })
    ```
    
    The `Fetch` operation enables querying against other collections.
    If the result of the `Fetch` operation changes, the collection will automatically be recomputed; the framework handles the state and event detection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. src/encoding/base64/base64_test.go

    func TestDecoderIssue3577(t *testing.T) {
    	next := make(chan nextRead, 10)
    	wantErr := errors.New("my error")
    	next <- nextRead{5, nil}
    	next <- nextRead{10, wantErr}
    	next <- nextRead{0, wantErr}
    	d := NewDecoder(StdEncoding, &faultInjectReader{
    		source: "VHdhcyBicmlsbGlnLCBhbmQgdGhlIHNsaXRoeSB0b3Zlcw==", // twas brillig...
    		nextc:  next,
    	})
    	errc := make(chan error, 1)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. cmd/peer-rest-client.go

    	return nil
    }
    
    // GetLocks - fetch older locks for a remote node.
    func (client *peerRESTClient) GetLocks(ctx context.Context) (lockMap map[string][]lockRequesterInfo, err error) {
    	resp, err := getLocksRPC.Call(ctx, client.gridConn(), grid.NewMSS())
    	if err != nil || resp == nil {
    		return nil, err
    	}
    	return *resp, nil
    }
    
    // LocalStorageInfo - fetch server information for a remote node.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/vcs.go

    	statLocal     func(rev, remote string) []string                                                   // cmd to stat local rev
    	parseStat     func(rev, out string) (*RevInfo, error)                                             // cmd to parse output of statLocal
    	fetch         []string                                                                            // cmd to fetch everything from remote
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/MathTesting.java

          for (int direction : new int[] {1, -1}) {
            double d = Double.longBitsToDouble(Double.doubleToLongBits(Math.scalb(1.0, i)) + direction);
            // Math.nextUp/nextDown
            if (d != Math.rint(d)) {
              fractionalBuilder.add(d);
            }
          }
        }
        for (double d :
            Doubles.asList(
                0,
                1,
                2,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go

    	_    uint16
    	_    uint64
    	_    uint64
    }
    type SysvShmDesc struct {
    	Perm   SysvIpcPerm
    	Segsz  uint64
    	Atime  int64
    	Dtime  int64
    	Ctime  int64
    	Cpid   int32
    	Lpid   int32
    	Nattch uint64
    	_      uint64
    	_      uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go

    	_    uint32
    	_    uint32
    }
    type SysvShmDesc struct {
    	Perm       SysvIpcPerm
    	Segsz      uint32
    	Atime      uint32
    	Dtime      uint32
    	Ctime      uint32
    	Cpid       int32
    	Lpid       int32
    	Nattch     uint32
    	Atime_high uint16
    	Dtime_high uint16
    	Ctime_high uint16
    	_          uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/codegen_test.cc

      feed->mutable_id()->set_node_name("feed0");
      feed->set_name("myfeed");
      feed = config.add_feed();
      feed->mutable_id()->set_node_name("feed1");
      tf2xla::Fetch* fetch = config.add_fetch();
      fetch->mutable_id()->set_node_name("fetch0");
      fetch->set_name("myfetch");
      tf2xla::Variable* variable = config.add_variable();
      variable->set_node_name("myvar_readonly");
      variable->mutable_shape()->add_dim()->set_size(1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. internal/grid/connection.go

    }
    
    // A Connection is a remote connection.
    // There is no distinction externally whether the connection was initiated from
    // this server or from the remote.
    type Connection struct {
    	// NextID is the next ID that can be used (atomic).
    	NextID uint64
    
    	// LastPong is last pong time (atomic)
    	// Only valid when StateConnected.
    	LastPong int64
    
    	// State of the connection (atomic)
    	state State
    
    	// Non-atomic
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. pkg/wasm/imagefetcher_test.go

    		// Push image to the registry.
    		err = crane.Push(img, ref)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// Fetch docker image with digest
    		d, err := img.Digest()
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// Fetch OCI image.
    		binaryFetcher, actualDiget, err := fetcher.PrepareFetch(ref)
    		if err != nil {
    			t.Fatal(err)
    		}
    		actual, err := binaryFetcher()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 05 04:15:17 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top