Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,470 for statx (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	for i := len(containers) - 1; i >= numToKeep; i-- {
    		if containers[i].unknown {
    			// Containers in known state could be running, we should try
    			// to stop it before removal.
    			id := kubecontainer.ContainerID{
    				Type: cgc.manager.runtimeName,
    				ID:   containers[i].id,
    			}
    			message := "Container is in unknown state, try killing it before removal"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/crypto/tls/bogo_shim_test.go

    				log.Fatal("expected ECH to be accepted, but connection state shows it was not")
    			} else if i == 0 && *onInitialExpectECHAccepted && !cs.ECHAccepted {
    				log.Fatal("expected ECH to be accepted, but connection state shows it was not")
    			} else if i > 0 && *onResumeExpectECHAccepted && !cs.ECHAccepted {
    				log.Fatal("expected ECH to be accepted on resumption, but connection state shows it was not")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	uploader, err := newUploader(config)
    	if err != nil {
    		return err
    	}
    	defer uploader.Close()
    	return uploader.Run()
    }
    
    // uploader encapsulates a single upload operation, carrying parameters and
    // shared state.
    type uploader struct {
    	// config is used to select counters to upload.
    	config        *telemetry.UploadConfig //
    	configVersion string                  // version of the config
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. cmd/storage-datatypes.go

    }
    
    // RawFileInfo - represents raw file stat information as byte array.
    // The above means that any added/deleted fields are incompatible.
    // Make sure to bump the internode version at storage-rest-common.go
    type RawFileInfo struct {
    	// Content of entire xl.meta (may contain data depending on what was requested by the caller.
    	Buf []byte `msg:"b,allownil"`
    }
    
    // FileInfo - represents file stat information.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. pkg/test/kube/dump.go

    		out, err := yaml.Marshal(&pod)
    		if err != nil {
    			scopes.Framework.Warnf("Error marshaling pod state for output: %v", err)
    			continue
    		}
    
    		outPath := podOutputPath(workDir, c, pod, "pod-state.yaml")
    		if err := os.WriteFile(outPath, out, os.ModePerm); err != nil {
    			scopes.Framework.Infof("Error writing out pod state to file: %v", err)
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    	if err != nil {
    		allErrs = append(allErrs, err...)
    	} else if compilationResult != nil && structuredAuthnFeatureEnabled {
    		state.usesEmailClaim = state.usesEmailClaim || usesEmailClaim(compilationResult.AST)
    		state.usesEmailVerifiedClaim = state.usesEmailVerifiedClaim || usesEmailVerifiedClaim(compilationResult.AST)
    		state.mapper.Username = authenticationcel.NewClaimsMapper([]authenticationcel.CompilationResult{*compilationResult})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager.go

    		// TODO: Until the bug - https://github.com/golang/go/issues/33357 is fixed, os.stat wouldn't return the
    		// right mode(socket) on windows. Hence deleting the file, without checking whether
    		// its a socket, on windows.
    		stat, err := os.Lstat(filePath)
    		if err != nil {
    			klog.ErrorS(err, "Failed to stat file", "path", filePath)
    			continue
    		}
    		if stat.IsDir() {
    			continue
    		}
    		err = os.RemoveAll(filePath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top