Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 197 for sesame (0.17 sec)

  1. cmd/format-erasure.go

    		tmpOld, export); err != nil && err != errFileNotFound {
    		bootLogIf(GlobalContext, fmt.Errorf("unable to rename (%s -> %s) %w, drive may be faulty please investigate",
    			pathJoin(export, minioMetaMultipartBucket),
    			tmpOld,
    			osErrToFileErr(err)))
    	}
    
    	// format-V2 struct is exactly same as format-V1 except that version is "3"
    	// which indicates the simplified multipart backend.
    	formatV3 := formatErasureV3{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/call.go

    			} else {
    				check.versionErrorf(call, go1_18, "implicit function instantiation")
    			}
    		}
    		// rename type parameters to avoid problems with recursive calls
    		var tmp Type
    		tparams, tmp = check.renameTParams(call.Pos(), sig.TypeParams().list(), sigParams)
    		sigParams = tmp.(*Tuple)
    		// make sure targs and tparams have the same length
    		for len(targs) < len(tparams) {
    			targs = append(targs, nil)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/protocol/DaemonMessageSerializerTest.groovy

            result.question == 'prompt'
            result.options == ['a', 'b']
            result.defaultOption == 1
            result.timestamp == 123
        }
    
        def "can serialize user input resume event"() {
            expect:
            def event = new UserInputResumeEvent(123)
            def result = serialize(event, serializer)
            result instanceof UserInputResumeEvent
            result.timestamp == 123
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/fetch.go

    	// the .partial file afterward (all while holding the lock).
    	//
    	// Before Go 1.16, we extracted to a temporary directory with a random name
    	// then renamed it into place with os.Rename. On Windows, this failed with
    	// ERROR_ACCESS_DENIED when another process (usually an anti-virus scanner)
    	// opened files in the temporary directory.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. cmd/erasure-healing.go

    	}
    
    	defer er.deleteAll(context.Background(), minioMetaTmpBucket, tmpID)
    
    	// Rename from tmp location to the actual location.
    	for i, disk := range outDatedDisks {
    		if disk == OfflineDisk {
    			continue
    		}
    
    		// record the index of the updated disks
    		partsMetadata[i].Erasure.Index = i + 1
    
    		// Attempt a rename now from healed data to final location.
    		partsMetadata[i].SetHealing()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  6. src/go/types/call.go

    			}
    		}
    		// rename type parameters to avoid problems with recursive calls
    		var tmp Type
    		tparams, tmp = check.renameTParams(call.Pos(), sig.TypeParams().list(), sigParams)
    		sigParams = tmp.(*Tuple)
    		// make sure targs and tparams have the same length
    		for len(targs) < len(tparams) {
    			targs = append(targs, nil)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  7. docs/fr/docs/index.md

    * La documentation alternative reflétera également le nouveau paramètre de requête et le nouveau corps :
    
    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-06-redoc-02.png)
    
    ### En résumé
    
    En résumé, vous déclarez **une fois** les types de paramètres, <abbr title="en anglais : body">le corps</abbr>  de la requête, etc. en tant que paramètres de fonction.
    
    Vous faites cela avec les types Python standard modernes.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. cni/pkg/install/install.go

    	// we would get infinite looping of events
    	//
    	// Additionally, fsnotify will lose existing watches on atomic copies (due to overwrite/rename),
    	// so we have to re-watch after re-copy to make sure we always have fresh watches.
    	watcher, err := util.CreateFileWatcher(targets...)
    	if err != nil {
    		return err
    	}
    	defer func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. cmd/prepare-storage.go

    	if err := renameAll(pathJoin(diskPath, minioMetaTmpBucket),
    		tmpOld, diskPath); err != nil && !errors.Is(err, errFileNotFound) {
    		storageLogIf(GlobalContext, fmt.Errorf("unable to rename (%s -> %s) %w, drive may be faulty, please investigate",
    			pathJoin(diskPath, minioMetaTmpBucket),
    			tmpOld,
    			osErrToFileErr(err)))
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

    ==============================================================================*/
    
    // This pass clusters the TensorFlow ops by host. The program generated by this
    // pass will have one function per host where all operations in the same
    // function are placed on the same host. Each result of the per-host function
    // will have a "tf.device" attribute which specifies the device assignment of
    // the result.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top