Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 119 for reasons (0.45 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                withInput "Build file 'build.gradle': file 'fis-file.txt'"
                withInput "Build file 'build.gradle': file 'fis-abs.txt'"
            }
        }
    
        @Ignore("wip: Currently failing on CI for unknown reason")
        def "report file is content addressable"() {
            given:
            settingsFile << """
                rootProject.name = 'car'
            """
    
            file("build.gradle") << """
                buildDir = 'out'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    		if base != 0 {
    			s = h.tryAllocMSpan()
    			if s != nil {
    				goto HaveSpan
    			}
    			// We have a base but no mspan, so we need
    			// to lock the heap.
    		}
    	}
    
    	// For one reason or another, we couldn't get the
    	// whole job done without the heap lock.
    	lock(&h.lock)
    
    	if needPhysPageAlign {
    		// Overallocate by a physical page to allow for later alignment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/proxier.go

    		} else {
    			klog.V(3).InfoS("Skipped creating Hns LoadBalancer for cluster ip resources. Reason : all endpoints are terminating", "clusterIP", svcInfo.ClusterIP(), "nodeport", svcInfo.NodePort(), "allEndpointsTerminating", allEndpointsTerminating)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      "tf.NoOp"() {_xla_compile_device_type = "TPU", _replication_info = "cluster_test_fn"} : () -> ()
      func.return
    }
    
    
    // Test cluster formation with ops with attached regions within a cluster.
    // Nested op's that are moved should get their _replication_info and device
    // attributes cleared.
    // CHECK-LABEL: func @cluster_ops_with_regions
    func.func @cluster_ops_with_regions() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		errEvent.Object = err
    	case *errors.StatusError:
    		errEvent.Object = &err.ErrStatus
    	default:
    		errEvent.Object = &metav1.Status{
    			Status:  metav1.StatusFailure,
    			Message: err.Error(),
    			Reason:  metav1.StatusReasonInternalError,
    			Code:    http.StatusInternalServerError,
    		}
    	}
    
    	// Create a watcher with room for a single event, populate it, and close the channel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    			// length the same here because it makes sense to "guess" the length for
    			// the latter if we have a composite literal; e.g. for [n]int{1, 2, 3}
    			// where n is invalid for some reason, it seems fair to assume it should
    			// be 3 (see also Checked.arrayLength and go.dev/issue/27346).
    			if utyp.len < 0 {
    				utyp.len = n
    				// e.Type is missing if we have a composite literal element
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	// We temporary allow both but we should unify here.
    	internalError := metav1.Status{
    		Status: metav1.StatusFailure,
    		Code:   http.StatusInternalServerError,
    		Reason: metav1.StatusReasonInternalError,
    	}
    	testCheckResultFunc(t, tooOldWatcher, func(actualEvent watch.Event) {
    		expectNoDiff(t, "incorrect event type", watch.Error, actualEvent.Type)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    				HTTPStatusCode: e.Code,
    			}
    			// GCS may send multiple errors, just pick the first one
    			// since S3 only sends one Error XML response.
    			if len(e.Errors) >= 1 {
    				apiErr.Code = e.Errors[0].Reason
    			}
    		case azblob.StorageError:
    			apiErr = APIError{
    				Code:           string(e.ServiceCode()),
    				Description:    e.Error(),
    				HTTPStatusCode: e.Response().StatusCode,
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    // pending commands are done (and runPending returns).
    // A test should call runPending if it wants to make sure that it is not
    // running in parallel with earlier tests, or if it has some other reason
    // for needing the earlier tests to be done.
    func (t *tester) runPending(nextTest *distTest) {
    	worklist := t.worklist
    	t.worklist = nil
    	for _, w := range worklist {
    		w.start = make(chan bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/strategy_test.go

    				Spec: api.PodSpec{
    					SchedulingGates: []api.PodSchedulingGate{{Name: "foo"}},
    				},
    			},
    			want: api.PodCondition{
    				Type:    api.PodScheduled,
    				Status:  api.ConditionFalse,
    				Reason:  apiv1.PodReasonSchedulingGated,
    				Message: "Scheduling is blocked due to non-empty scheduling gates",
    			},
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top