Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for wbMove (0.14 sec)

  1. cmd/object-handlers_test.go

    		contentLength int64
    		textData      []byte
    		metaData      map[string]string
    	}{
    		{bucketName, objectName, int64(len(bytesData[0].byteData)), bytesData[0].byteData, make(map[string]string)},
    	}
    	// iterate through the above set of inputs and upload the object.
    	for i, input := range putObjectInputs {
    		// uploading the object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/net/http/server.go

    // in cases where the handler's final output is smaller than the buffer
    // size. It also conditionally adds chunk headers, when in chunking mode.
    //
    // See the comment above (*response).Write for the entire write flow.
    type chunkWriter struct {
    	res *response
    
    	// header is either nil or a deep clone of res.handlerHeader
    	// at the time of res.writeHeader, if res.writeHeader is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	needVet
    	needCompiledGoFiles
    	needCovMetaFile
    	needStale
    )
    
    // build is the action for building a single package.
    // Note that any new influence on this logic must be reported in b.buildActionID above as well.
    func (b *Builder) build(ctx context.Context, a *Action) (err error) {
    	p := a.Package
    	sh := b.Shell(a)
    
    	bit := func(x uint32, b bool) uint32 {
    		if b {
    			return x
    		}
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

            call @x_1(x, y)
    
          would be transformed into
            func.func @f(%arg0) {
              return %arg0
            }
            ...
            call @x_1(x)
    
          Note that, in the above example, both args would be removed if there
          wasn't the "SomeOpThatUsesArg0(%arg0)" line.
      }];
      let constructor = "TF::CreateRemoveUnusedArgumentsPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // # Internal Directories
    //
    // Code in or below a directory named "internal" is importable only
    // by code in the directory tree rooted at the parent of "internal".
    // Here's an extended version of the directory layout above:
    //
    //	/home/user/go/
    //	    src/
    //	        crash/
    //	            bang/              (go code in package bang)
    //	                b.go
    //	        foo/                   (go code in package foo)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    		// Don't create cgroups for run once pod if it was killed above
    		// The current policy is not to restart the run once pods when
    		// the kubelet is restarted with the new flag as run once pods are
    		// expected to run only once and if the kubelet is restarted then
    		// they are not expected to run again.
    		// We don't create and apply updates to cgroup if its a run once pod and was killed above
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			orphanDeleteStrategy,
    			false,
    			[]string{metav1.FinalizerOrphanDependents},
    		},
    
    		// cases run with nil DeleteOptions should have exact same behavior.
    		// They should be exactly the same as above cases where
    		// DeleteOptions.OrphanDependents is nil.
    		{
    			podWithOrphanFinalizer("pod17"),
    			nil,
    			defaultDeleteStrategy,
    			false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    	// restartable init containers
    	for _, container := range spec.InitContainers {
    		if !kubetypes.IsRestartableInitContainer(&container) {
    			// Skip the regular init containers, as they have been handled above.
    			continue
    		}
    		containerStatus, ok := podutil.GetContainerStatus(info, container.Name)
    		if !ok {
    			unknown++
    			continue
    		}
    
    		switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    		rw.Write(res)
    	})
    	ln := &oneConnListener{conn: conn}
    	go Serve(ln, handler)
    	<-conn.closec
    	if b.N != handled {
    		b.Errorf("b.N=%d but handled %d", b.N, handled)
    	}
    }
    
    // same as above, but representing the most simple possible request
    // and handler. Notably: the handler does not call rw.Header().
    func BenchmarkServerFakeConnWithKeepAliveLite(b *testing.B) {
    	b.ReportAllocs()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top