Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,400 for statx (0.07 sec)

  1. src/cmd/go/testdata/script/test_cache_inputs.txt

    go test testcache -run=TestOSArgs -timeout=20m -v
    ! stdout '\(cached\)'
    stdout '-test\.timeout[= ]20m'
    go test testcache -run=TestOSArgs -timeout=5s -v
    ! stdout '\(cached\)'
    stdout '-test\.timeout[= ]5s'
    
    # If the test stats a file, changes to the file should invalidate the cache.
    go test testcache -run=FileSize
    go test testcache -run=FileSize
    stdout '\(cached\)'
    
    cp 4x.txt testcache/file.txt
    go test testcache -run=FileSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cadvisor/cadvisor_linux.go

    	if err != nil {
    		return nil, err
    	}
    
    	if _, err := os.Stat(rootPath); err != nil {
    		if os.IsNotExist(err) {
    			if err := os.MkdirAll(path.Clean(rootPath), 0750); err != nil {
    				return nil, fmt.Errorf("error creating root directory %q: %v", rootPath, err)
    			}
    		} else {
    			return nil, fmt.Errorf("failed to Stat %q: %v", rootPath, err)
    		}
    	}
    
    	return &cadvisorClient{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. pkg/kubelet/runonce.go

    			return fmt.Errorf("timeout error: pod %q containers not running after %d retries", format.Pod(pod), runOnceMaxRetries)
    		}
    		// TODO(proppy): health checking would be better than waiting + checking the state at the next iteration.
    		klog.InfoS("Pod's containers synced, waiting", "pod", klog.KObj(pod), "duration", delay)
    		time.Sleep(delay)
    		retry++
    		delay *= runOnceRetryDelayBackoff
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. src/internal/trace/summary_test.go

    	}
    }
    
    func basicGoroutineExecStatsChecks(t *testing.T, stats *trace.GoroutineExecStats) {
    	if stats.ExecTime < 0 {
    		t.Error("found negative ExecTime")
    	}
    	if stats.SchedWaitTime < 0 {
    		t.Error("found negative SchedWaitTime")
    	}
    	if stats.SyscallTime < 0 {
    		t.Error("found negative SyscallTime")
    	}
    	if stats.SyscallBlockTime < 0 {
    		t.Error("found negative SyscallBlockTime")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

            final Task b = task("b")
    
            when:
            taskGraph.afterTask(closure)
            taskGraph.afterTask(action)
            taskExecutionListeners.source.afterExecute(a, a.state)
            taskExecutionListeners.source.afterExecute(b, b.state)
    
            then:
            1 * closure.call(a)
            1 * closure.call(b)
            1 * action.execute(a)
            1 * action.execute(b)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. src/os/os_windows_test.go

    	linkInfo, err := linkFile.Stat()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !linkInfo.IsDir() {
    		t.Errorf("Open(%#q).Stat().IsDir() = false; want true", absLink)
    	}
    
    	absInfo, err := os.Stat(absDir)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if !os.SameFile(absInfo, linkInfo) {
    		t.Errorf("SameFile(Stat(%#q), Open(%#q).Stat()) = false; want true", absDir, absLink)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    					State:    kubecontainer.ContainerStateExited,
    					ExitCode: 2,
    				},
    				{
    					Name:     "without-reason",
    					State:    kubecontainer.ContainerStateExited,
    					ExitCode: 3,
    				},
    				{
    					Name:     "with-reason",
    					State:    kubecontainer.ContainerStateExited,
    					ExitCode: 4,
    				},
    				{
    					Name:     "succeed",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/quantize-variables.mlir

      %41 = "quantfork.stats"(%40) {layerStats = dense<[0.0, 1.0]> : tensor<2xf32>} : (tensor<1x2x3xf32>) -> tensor<1x2x3xf32>
      %42 = "tfl.concatenation"(%41, %0) {axis = 1 : i32, fused_activation_function = "NONE"} : (tensor<1x2x3xf32>, tensor<1x2x3xf32>) -> tensor<1x4x3xf32>
      %43 = "quantfork.stats"(%42) {layerStats = dense<[-1.0, 1.0]> : tensor<2xf32>} : (tensor<1x4x3xf32>) -> tensor<1x4x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_attacher_test.go

    				stat, ok := stats[attached.spec]
    				if attached.attached && !ok {
    					t.Error("failed to retrieve attached status for:", attached.spec)
    				}
    				if attached.attached != stat {
    					t.Errorf("expecting volume attachment %t, got %t", attached.attached, stat)
    				}
    			}
    		})
    	}
    }
    
    func TestAttacherVolumesAreAttachedWithInline(t *testing.T) {
    	type attachedSpec struct {
    		volName  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/pcln.go

    	state, compUnits, funcs := makePclntab(ctxt, container)
    
    	ldr := ctxt.loader
    	state.carrier = ldr.LookupOrCreateSym("runtime.pclntab", 0)
    	ldr.MakeSymbolUpdater(state.carrier).SetType(sym.SPCLNTAB)
    	ldr.SetAttrReachable(state.carrier, true)
    	setCarrierSym(sym.SPCLNTAB, state.carrier)
    
    	state.generatePCHeader(ctxt)
    	nameOffsets := state.generateFuncnametab(ctxt, funcs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top