Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 222 for recordDef (0.18 sec)

  1. cmd/kube-proxy/app/server.go

    	select {
    	case err = <-healthzErrCh:
    		s.Recorder.Eventf(s.NodeRef, nil, api.EventTypeWarning, "FailedToStartProxierHealthcheck", "StartKubeProxy", err.Error())
    	case err = <-metricsErrCh:
    		s.Recorder.Eventf(s.NodeRef, nil, api.EventTypeWarning, "FailedToStartMetricServer", "StartKubeProxy", err.Error())
    	}
    	return err
    }
    
    func (s *ProxyServer) birthCry() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/attach_detach_controller.go

    		return nil, fmt.Errorf("could not initialize volume plugins for Attach/Detach Controller: %w", err)
    	}
    
    	adc.broadcaster = record.NewBroadcaster(record.WithContext(ctx))
    	recorder := adc.broadcaster.NewRecorder(scheme.Scheme, v1.EventSource{Component: "attachdetach-controller"})
    	blkutil := volumepathhandler.NewBlockVolumePathHandler()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. src/strconv/decimal.go

    func shouldRoundUp(a *decimal, nd int) bool {
    	if nd < 0 || nd >= a.nd {
    		return false
    	}
    	if a.d[nd] == '5' && nd+1 == a.nd { // exactly halfway - round to even
    		// if we truncated, a little higher than what's recorded - always round up
    		if a.trunc {
    			return true
    		}
    		return nd > 0 && (a.d[nd-1]-'0')%2 != 0
    	}
    	// not halfway - digit tells all
    	return a.d[nd] >= '5'
    }
    
    // Round a to nd digits (or fewer).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 19:41:25 UTC 2017
    - 11K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_test.go

    func TestGCMLegacyDataCompatibility(t *testing.T) {
    	block, err := aes.NewCipher([]byte("snorlax_awesomes"))
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	transformerDecrypt := newGCMTransformer(t, block, nil)
    
    	// recorded output from NewGCMTransformer at commit 3b1fc60d8010dd8b53e97ba80e4710dbb430beee
    	const legacyCiphertext = "\x9f'\xc8\xfc\xea\x8aX\xc4g\xd8\xe47\xdb\xf2\xd8YU\xf9\xb4\xbd\x91/N\xf9g\u05c8\xa0\xcb\ay}\xac\n?\n\bE`\\\xa8Z\xc8V+J\xe1"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/loopreschedchecks.go

    	}
    	s += "\n"
    	return s
    }
    
    // insertLoopReschedChecks inserts rescheduling checks on loop backedges.
    func insertLoopReschedChecks(f *Func) {
    	// TODO: when split information is recorded in export data, insert checks only on backedges that can be reached on a split-call-free path.
    
    	// Loop reschedule checks compare the stack pointer with
    	// the per-g stack bound.  If the pointer appears invalid,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

      }
    
      public void testServiceStartupTimes_selfStartingServices() {
        // This tests to ensure that:
        // 1. service times are accurate when the service is started by the manager
        // 2. service times are recorded when the service is not started by the manager (but they may
        // not be accurate).
        final Service b =
            new NoOpDelayedService(353) {
              @Override
              protected void doStart() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. pkg/kubelet/volume_host.go

    }
    
    func (kvh *kubeletVolumeHost) GetNodeName() types.NodeName {
    	return kvh.kubelet.nodeName
    }
    
    func (kvh *kubeletVolumeHost) GetEventRecorder() record.EventRecorder {
    	return kvh.kubelet.recorder
    }
    
    func (kvh *kubeletVolumeHost) GetExec(pluginName string) utilexec.Interface {
    	return kvh.exec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            noExceptionThrown()
        }
    
        def "cannot register when valve is closed"() {
            when:
            register(listener)
    
            then:
            thrown IllegalStateException
        }
    
        def "passes recorded events to listeners registering"() {
            def d1 = d(1, null, 1)
            def bridge = getOrCreateBridge()
            bridge.valve.start()
    
            when:
            broadcast.started(d1, new OperationStartEvent(0))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    		uploadOK = false // no config, nothing to upload
    	}
    	if u.tooOld(expiryDate, u.startTime) {
    		u.logger.Printf("Expiry date %s is too old", expiryDate)
    		uploadOK = false
    	}
    	// If the mode is recorded with an asof date, don't upload if the report
    	// includes any data on or before the asof date.
    	if !asof.IsZero() && !asof.Before(start) {
    		u.logger.Printf("As-of date %s is not before start %s", asof, start)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    	objAction, ok := action.(actionWithObject)
    	if ok {
    		return true, objAction.GetObject(), nil
    	}
    	return true, nil, nil
    }
    
    // logDryRunAction logs the action that was recorded by the "catch-all" (*,*) reactor and tells the user what would have happened in an user-friendly way
    func logDryRunAction(action core.Action, w io.Writer, marshalFunc MarshalFunc) {
    
    	group := action.GetResource().Group
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
Back to top