Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for great (0.4 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

                    Smb2CreateRequest req = new Smb2CreateRequest(config, uncPath);
                    req.setDesiredAccess(access);
    
                    if ( ( flags & SmbConstants.O_TRUNC ) == O_TRUNC && ( flags & SmbConstants.O_CREAT ) == O_CREAT ) {
                        req.setCreateDisposition(Smb2CreateRequest.FILE_OVERWRITE_IF);
                    }
                    else if ( ( flags & SmbConstants.O_TRUNC ) == O_TRUNC ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Futures.java

       *       RuntimeException} (though {@code get} implementations are discouraged from throwing such
       *       exceptions).
       * </ul>
       *
       * <p>The overall principle is to continue to treat every checked exception as a checked
       * exception, every unchecked exception as an unchecked exception, and every error as an error. In
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
  3. cmd/sts-handlers_test.go

    	defer cancel()
    
    	bucket := getRandomBucketName()
    	err := s.client.MakeBucket(ctx, bucket, minio.MakeBucketOptions{ObjectLocking: true})
    	if err != nil {
    		c.Fatalf("bucket creat error: %v", err)
    	}
    
    	// Create policy, user and associate policy
    	policy := "mypolicy"
    	policyBytes := []byte(fmt.Sprintf(`{
      "Version": "2012-10-17",
      "Statement": [
       {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 85.7K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    		if c.badPointerTypedef(dt) {
    			// Treat this typedef as a uintptr.
    			s := *sub
    			s.Go = c.uintptr
    			s.BadPointer = true
    			sub = &s
    			// Make sure we update any previously computed type.
    			if oldType := typedef[name.Name]; oldType != nil {
    				oldType.Go = sub.Go
    				oldType.BadPointer = true
    			}
    		}
    		if c.badVoidPointerTypedef(dt) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    		fmt.Fprintf(writer, "%s%d additional destination(s) that will not reach this pod\n",
    			printSpaces(initPrintNum+printLevel1), possibleDests-matches)
    		// If we matched, but printed nothing, treat this as the catch-all
    		if facts == 0 {
    			for _, mismatch := range mismatchNotes {
    				fmt.Fprintf(writer, "%s%s\n",
    					printSpaces(initPrintNum+printLevel2), mismatch)
    			}
    		}
    
    		return
    	}
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  6. src/archive/zip/reader_test.go

    		t.Fatal(err)
    	}
    	_, err = io.ReadAll(r)
    	if err != io.ErrUnexpectedEOF {
    		t.Errorf("File[0] error = %v; want io.ErrUnexpectedEOF", err)
    	}
    	r.Close()
    }
    
    // Verify we do not treat non-zip64 archives as zip64
    func TestIssue12449(t *testing.T) {
    	data := []byte{
    		0x50, 0x4b, 0x03, 0x04, 0x14, 0x00, 0x08, 0x00,
    		0x00, 0x00, 0x6b, 0xb4, 0xba, 0x46, 0x00, 0x00,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    	s.fsType = info.FSType
    
    	if !globalIsCICD && !globalIsErasureSD {
    		var rootDrive bool
    		if globalRootDiskThreshold > 0 {
    			// Use MINIO_ROOTDISK_THRESHOLD_SIZE to figure out if
    			// this disk is a root disk. treat those disks with
    			// size less than or equal to the threshold as rootDrives.
    			rootDrive = info.Total <= globalRootDiskThreshold
    		} else {
    			rootDrive, err = disk.IsRootDisk(s.drivePath, SlashSeparator)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  8. configure.py

        version: a version to be converted
    
      Returns:
        An integer if converted successfully, otherwise return None.
      """
      version = version.split('-')[0]
      version_segments = version.split('.')
      # Treat "0.24" as "0.24.0"
      if len(version_segments) == 2:
        version_segments.append('0')
      for seg in version_segments:
        if not seg.isdigit():
          return None
    
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern void TF_Reset(const TF_SessionOptions* opt,
                                        const char** containers, int ncontainers,
                                        TF_Status* status);
    // Treat the bytes proto[0,proto_len-1] as a serialized GraphDef and
    // add the nodes in that GraphDef to the graph for the session.
    //
    // Prefer use of TF_Session and TF_GraphImportGraphDef over this.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // be used by clients to determine when objects have changed. May be used for optimistic
      // concurrency, change detection, and the watch operation on a resource or set of resources.
      // Clients must treat these values as opaque and passed unmodified back to the server.
      // They may only be valid for a particular resource or set of resources.
      //
      // Populated by the system.
      // Read-only.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
Back to top