Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 182 for Gleason (0.23 sec)

  1. 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)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	// end up taking the codepath we want to test in the resource builder
    	b.ResourceTypeOrNameArgs(true, "foo", "bar")
    
    	// ensure that receiving an error for any reason other than a non-existent resource is returned as-is
    	err = b.Do().IntoSingleItemImplied(&singleItemImplied).Visit(test.Handle)
    	if err != nil && !strings.Contains(err.Error(), expectedErr.Error()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		}
    		if atomic.LoadInt32(&uss.rejects[i]) > 0 {
    			expectedRejects = expectedRejects + fmt.Sprintf(`				apiserver_flowcontrol_rejected_requests_total{flow_schema=%q,priority_level=%q,reason=%q} %d%s`, fsName, uss.name, uss.rejectReason, uss.rejects[i], "\n")
    		}
    	}
    	if uss.evalExecutingMetrics && len(uss.expectedExecuting) > 0 {
    		e := `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

        }
        return recordsTime ? Ticker.systemTicker() : NULL_TICKER;
      }
    
      /**
       * Specifies a listener instance that caches should notify each time an entry is removed for any
       * {@linkplain RemovalCause reason}. Each cache created by this builder will invoke this listener
       * as part of the routine maintenance described in the class documentation above.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// On successful deletion, `status` must be `TF_OK` and `*undeleted_files`
      /// and `*undeleted_dirs` must be 0. On unsuccessful deletion, `status` must
      /// be set to the reason why one entry couldn't be removed and the proper
      /// count must be updated. If the deletion is unsuccessful because the
      /// traversal couldn't start, `*undeleted_files` must be set to 0 and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K 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. src/go/printer/testdata/parser.go

    	p.next()
    
    	// set up the pkgScope here (as opposed to in parseFile) because
    	// there are other parser entry points (ParseExpr, etc.)
    	p.openScope()
    	p.pkgScope = p.topScope
    
    	// for the same reason, set up a label scope
    	p.openLabelScope()
    }
    
    // ----------------------------------------------------------------------------
    // Scoping support
    
    func (p *parser) openScope() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  8. 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)
  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