Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,938 for reckon (0.15 sec)

  1. src/internal/trace/testdata/fuzz/FuzzReader/closing-unknown-region

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 240 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/region-control-flow-to-functional.mlir

    // RUN: tf-opt %s -tf-region-control-flow-to-functional -split-input-file | FileCheck %s
    
    // Simple IfRegion
    // CHECK: func private @test_else_name(%arg0: tensor<*xf32>) -> tensor<*xf32>
    // CHECK-NEXT:   "tf.Neg"
    // CHECK: func private @test_then_name(%arg0: tensor<*xf32>) -> tensor<*xf32>
    // CHECK-NEXT:   "tf.Abs"
    func.func @testSimple(%arg0: tensor<i1>, %arg1: tensor<*xf32>) -> tensor<*xf32> {
      // CHECK: "tf.If"
      // CHECK-NOT: attr1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 11:15:34 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  3. src/internal/trace/summary.go

    	return descendents
    }
    
    // UserRegionSummary represents a region and goroutine execution stats
    // while the region was active. (For v2 traces.)
    type UserRegionSummary struct {
    	TaskID TaskID
    	Name   string
    
    	// Region start event. Normally EventRegionBegin event or nil,
    	// but can be a state transition event from NotExist or Undetermined
    	// if the region is a synthetic region representing task inheritance
    	// from the parent goroutine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        kubernetes.io/os: linux
        cloud.google.com/gke-nodepool: default-pool
        cloud.google.com/gke-os-distribution: cos
        failure-domain.beta.kubernetes.io/region: us-central1
        failure-domain.beta.kubernetes.io/zone: us-central1-b
        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    							Status:             v1.ConditionFalse,
    							Reason:             "KubeletHasSufficientMemory",
    							Message:            "kubelet has sufficient memory available",
    							LastHeartbeatTime:  metav1.Time{},
    							LastTransitionTime: metav1.Time{},
    						},
    						{
    							Type:               v1.NodeDiskPressure,
    							Status:             v1.ConditionFalse,
    							Reason:             "KubeletHasNoDiskPressure",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. src/internal/trace/summary_test.go

    			t.Errorf("wanted region start event %s, got %s", wantStart, kind)
    		}
    		if kind == trace.EventRegionBegin {
    			if region.Start.Region().Type != region.Name {
    				t.Errorf("region name mismatch: event has %s, summary has %s", region.Start.Region().Type, region.Name)
    			}
    		} else {
    			st := region.Start.StateTransition()
    			if st.Resource.Kind != trace.ResourceGoroutine {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. tests/associations_test.go

    	}
    	if err := DB.Migrator().DropTable(&Organization{}, &Region{}); err != nil {
    		t.Fatalf("Failed to migrate, got error: %s", err)
    	}
    	if err := DB.AutoMigrate(&Organization{}, &Region{}); err != nil {
    		t.Fatalf("Failed to migrate, got error: %v", err)
    	}
    	region := &Region{Name: "Region1"}
    	if err := DB.Create(region).Error; err != nil {
    		t.Fatalf("fail to create region %v", err)
    	}
    	var orgs []Organization
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        kubernetes.io/os: linux
        cloud.google.com/gke-nodepool: default-pool
        cloud.google.com/gke-os-distribution: cos
        failure-domain.beta.kubernetes.io/region: us-central1
        failure-domain.beta.kubernetes.io/zone: us-central1-b
        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/syscall/dirent.go

    	origlen := len(buf)
    	count = 0
    	for max != 0 && len(buf) > 0 {
    		reclen, ok := direntReclen(buf)
    		if !ok || reclen > uint64(len(buf)) {
    			return origlen, count, names
    		}
    		rec := buf[:reclen]
    		buf = buf[reclen:]
    		ino, ok := direntIno(rec)
    		if !ok {
    			break
    		}
    		// See src/os/dir_unix.go for the reason why this condition is
    		// excluded on wasip1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:13:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/trace/pprof.go

    	return makeComputePprofFunc(trace.GoWaiting, func(reason string) bool {
    		return reason == "network"
    	})
    }
    
    // computePprofBlock returns a computePprofFunc that generates blocking pprof-like profile
    // (time spent blocked on synchronization primitives).
    func computePprofBlock() computePprofFunc {
    	return makeComputePprofFunc(trace.GoWaiting, func(reason string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top