Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 159 for statx (0.26 sec)

  1. pkg/kubelet/server/server_test.go

    		"runningpods":                     {url: "/runningpods/", bucket: "runningpods"},
    		"stats":                           {url: "/stats/", bucket: "stats"},
    		"stats summary sub":               {url: "/stats/summary", bucket: "stats"},
    		"invalid path":                    {url: "/junk", bucket: "other"},
    		"invalid path starting with good": {url: "/healthzjunk", bucket: "other"},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    			for j := range po.Status.InitContainerStatuses {
    				stat := po.Status.InitContainerStatuses[j]
    				result += stat.RestartCount
    			}
    			for j := range po.Status.ContainerStatuses {
    				stat := po.Status.ContainerStatuses[j]
    				result += stat.RestartCount
    			}
    		}
    	}
    	if *job.Spec.BackoffLimit == 0 {
    		return result > 0
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			state := &validationState{}
    			got := validateClaimValidationRules(compiler, state, tt.in, fldPath, tt.structuredAuthnFeatureEnabled).ToAggregate()
    			if d := cmp.Diff(tt.want, errString(got)); d != "" {
    				t.Fatalf("ClaimValidationRules validation mismatch (-want +got):\n%s", d)
    			}
    			if tt.wantCELMapper && state.mapper.ClaimValidationRules == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    	// in allocated spans.
    	printlock()
    	print("runtime: pointer ", hex(p))
    	if s != nil {
    		state := s.state.get()
    		if state != mSpanInUse {
    			print(" to unallocated span")
    		} else {
    			print(" to unused region of span")
    		}
    		print(" span.base()=", hex(s.base()), " span.limit=", hex(s.limit), " span.state=", state)
    	}
    	print("\n")
    	if refBase != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    		for _, set := range s.sets {
    			for _, disk := range set.getDisks() {
    				if disk == OfflineDisk {
    					continue
    				}
    				stats, err := disk.StatInfoFile(ctx, volume, file, true)
    				if err != nil {
    					continue
    				}
    				for _, si := range stats {
    					found++
    					var r io.ReadCloser
    					if !si.Dir {
    						r, err = disk.ReadFileStream(ctx, volume, si.Name, 0, si.Size)
    						if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %0 = "quantfork.stats"(%arg0) {layerStats = dense<[-0.440728068, 0.189515018]> : tensor<2xf32>} : (tensor<1x1xf32>) -> tensor<1x1xf32>
      %1 = "quantfork.stats"(%arg1) {layerStats = dense<[-0.154693216, 0.26483655]> : tensor<2xf32>} : (tensor<1x1xf32>) -> tensor<1x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// previously produced by [WrapSession] into a usable session.
    	//
    	// UnwrapSession will usually either decrypt a session state in the ticket
    	// (for example with [Config.EncryptTicket]), or use the ticket as a handle
    	// to recover a previously stored state. It must use [ParseSessionState] to
    	// deserialize the session state.
    	//
    	// If UnwrapSession returns an error, the connection is terminated. If it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            failure.assertHasDescription("Configuration cache state could not be cached: field `prop` of task `:broken` of type `BrokenTaskType`: error writing value of type 'BrokenSerializable'")
            failure.assertHasCause("BOOM")
            problems.assertResultHasProblems(failure)
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13862")
        def "state deserialization errors always halt the build and includes the cause"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      }
      return mlir::FusedLoc::get(builder.getContext(), locations);
    }
    
    // Extract the min max information in the tensor and create the quant stats op.
    // If the input `tensor` has scale/zero_point, `res` should have quantized
    // type, thus none stats op is required and nullptr is returned.
    // If the min max information is invalid, nullptr is returned.
    mlir::Operation* ConvertMinMaxToStatsOp(const TensorT& tensor, OpBuilder b,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        private void failAfterProjectIsEvaluated(String methodPrototype) {
            if (!state.isUnconfigured() && !state.isConfiguring()) {
                throw new InvalidUserCodeException("Cannot run Project." + methodPrototype + " when the project is already evaluated.");
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top