Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 811 for rsadsi (0.18 sec)

  1. src/net/http/responsecontroller.go

    		case rwUnwrapper:
    			rw = t.Unwrap()
    		default:
    			return nil, nil, errNotSupported()
    		}
    	}
    }
    
    // SetReadDeadline sets the deadline for reading the entire request, including the body.
    // Reads from the request body after the deadline has been exceeded will return an error.
    // A zero value means no deadline.
    //
    // Setting the read deadline after it has been exceeded will not extend it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/net/textproto/reader.go

    		line = bytes.Clone(line)
    	}
    	return line, err
    }
    
    // readContinuedLineSlice reads continued lines from the reader buffer,
    // returning a byte slice with all lines. The validateFirstLine function
    // is run on the first read line, and if it returns an error then this
    // error is returned from readContinuedLineSlice.
    // It reads up to lim bytes of data (or unlimited if lim is less than 0).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    	return func(t *testing.T, pageSize, estimatedProcessedObjects uint64) {
    		if reads := transformer.GetReadsAndReset(); reads != estimatedProcessedObjects {
    			t.Errorf("unexpected reads: %d, expected: %d", reads, estimatedProcessedObjects)
    		}
    		estimatedGetCalls := uint64(1)
    		if pageSize != 0 {
    			// We expect that kube-apiserver will be increasing page sizes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/InterceptScope.java

        }
    
        /**
         * The returned scope includes reads of all properties named {@code propertyName}.
         * This scope doesn't include calls to the getter method corresponding to this property,
         * use additional explicit {@link #methodsNamed(String)} scope to intercept that.
         *
         * @param propertyName the name of the property to intercept reads of
         * @return the scope object
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/crypto/rand/rand_unix.go

    	"syscall"
    	"time"
    )
    
    const urandomDevice = "/dev/urandom"
    
    func init() {
    	if boring.Enabled {
    		Reader = boring.RandReader
    		return
    	}
    	Reader = &reader{}
    }
    
    // A reader satisfies reads by reading from urandomDevice
    type reader struct {
    	f    io.Reader
    	mu   sync.Mutex
    	used atomic.Uint32 // Atomic: 0 - never used, 1 - used, but f == nil, 2 - used, and f != nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 01 08:32:46 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. src/io/fs/readdir.go

    // that provides an optimized implementation of [ReadDir].
    type ReadDirFS interface {
    	FS
    
    	// ReadDir reads the named directory
    	// and returns a list of directory entries sorted by filename.
    	ReadDir(name string) ([]DirEntry, error)
    }
    
    // ReadDir reads the named directory
    // and returns a list of directory entries sorted by filename.
    //
    // If fs implements [ReadDirFS], ReadDir calls fs.ReadDir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_experimental_reader.h

    TF_CAPI_EXPORT extern TFE_MonitoringCounterReader*
    TFE_MonitoringNewCounterReader(const char* name);
    
    // Reads the value of a counter that was created with 0 labels.
    TF_CAPI_EXPORT extern int64_t TFE_MonitoringReadCounter0(
        TFE_MonitoringCounterReader*);
    
    // Reads the value of specific cell of a counter that was created with 1 label.
    TF_CAPI_EXPORT extern int64_t TFE_MonitoringReadCounter1(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 20 03:14:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/cryptobyte/string.go

    	}
    	*outChild = v
    	return true
    }
    
    // ReadUint8LengthPrefixed reads the content of an 8-bit length-prefixed value
    // into out and advances over it. It reports whether the read was successful.
    func (s *String) ReadUint8LengthPrefixed(out *String) bool {
    	return s.readLengthPrefixed(1, out)
    }
    
    // ReadUint16LengthPrefixed reads the content of a big-endian, 16-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. internal/store/store.go

    	DelList(key []string) error
    	Open() error
    	Delete() error
    	Extension() string
    }
    
    // Key denotes the key present in the store.
    type Key struct {
    	Name   string
    	IsLast bool
    }
    
    // replayItems - Reads the items from the store and replays.
    func replayItems[I any](store Store[I], doneCh <-chan struct{}, log logger, id string) <-chan Key {
    	keyCh := make(chan Key)
    
    	go func() {
    		defer xioutil.SafeClose(keyCh)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 25 16:44:20 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BlockStore.java

        void clear();
    
        /**
         * Removes the given block from this store.
         */
        void remove(BlockPayload block);
    
        /**
         * Reads the first block from this store.
         */
        <T extends BlockPayload> T readFirst(Class<T> payloadType);
        
        /**
         * Reads a block from this store.
         */
        <T extends BlockPayload> T read(BlockPointer pos, Class<T> payloadType);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top