Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for WIPE (0.1 sec)

  1. pkg/registry/core/service/strategy.go

    	// In all of these cases we only want to wipe a field if we a) know it no
    	// longer applies; b) might have initialized it automatically; c) know the
    	// user did not ALSO try to change it (in which case it should fail in
    	// validation).
    
    	// If the user is switching to a type that does not need a value in
    	// clusterIP/clusterIPs (even "None" counts as a value), we might be able
    	// to wipe some fields.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. pkg/istio-agent/health/health_check.go

    		healthy, err := w.prober.Probe(w.config.ProbeTimeout)
    		if healthy.IsHealthy() {
    			healthCheckLog.Debug("probe completed with healthy status")
    			// we were healthy, increment success counter
    			numSuccess++
    			// wipe numFail (need consecutive success)
    			numFail = 0
    			// if we reached the threshold, mark the target as healthy
    			if numSuccess == w.config.SuccessThresh && lastState != lastStateHealthy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:44 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istioctl/kube.go

    	rootCmd.SetErr(&err)
    	// istioctl will overwrite logs which we don't want.
    	// It happens to do this via PersistentPreRunE, which we can disable.
    	// We add an additional check in case someone refactors this away, to ensure we don't wipe out non-logging code.
    	if fmt.Sprintf("%p", rootCmd.PersistentPreRunE) != fmt.Sprintf("%p", cmd.ConfigureLogging) {
    		log.Fatalf("istioctl PersistentPreRunE is not configuring logging")
    	}
    	rootCmd.PersistentPreRunE = nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    			if !gotProperties.Equal(wantedProperties) {
    				t.Fatalf("unexpected properties, got: %s, expected: %s", gotProperties.List(), wantedProperties.List())
    			}
    
    			// wipe out TypeMeta/ObjectMeta content, with those many lines of descriptions. We trust that they match here.
    			for _, metaField := range []string{"kind", "apiVersion", "metadata"} {
    				if _, found := got.schema.Properties["kind"]; found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/status_strategy.go

    			// we might need a mechanism that is the inverse of resetFields where
    			// you specify only the fields to be kept rather than the fields to be wiped
    			// that way you could wipe everything but the status in this case.
    			fieldpath.MakePathOrDie("spec"),
    		),
    	}
    
    	return fields
    }
    
    func (a statusStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 22:16:10 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller_test.go

    		}
    
    		// create the associated service
    		// no need for assertions, just trying to ensure no errors
    		createSimpleService(t, client, "exportable-ns", "manual-export")
    
    		// assert that we didn't wipe out the pre-existing serviceexport status
    		assertServiceExportHasCondition(t, client, "exportable-ns", "manual-export",
    			mcsapi.ServiceExportValid)
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 16:02:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/database/sql/fakedb_test.go

    	s.touchMem()
    
    	if s.wait > 0 {
    		time.Sleep(s.wait)
    	}
    
    	select {
    	default:
    	case <-ctx.Done():
    		return nil, ctx.Err()
    	}
    
    	db := s.c.db
    	switch s.cmd {
    	case "WIPE":
    		db.wipe()
    		return driver.ResultNoRows, nil
    	case "USE_RAWBYTES":
    		s.c.db.useRawBytes.Store(true)
    		return driver.ResultNoRows, nil
    	case "CREATE":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	}
    
    	expectPanic("Exec Exec", func() { db.Exec("PANIC|Exec|WIPE") })
    	exec(t, db, "WIPE") // check not deadlocked
    	expectPanic("Exec NumInput", func() { db.Exec("PANIC|NumInput|WIPE") })
    	exec(t, db, "WIPE") // check not deadlocked
    	expectPanic("Exec Close", func() { db.Exec("PANIC|Close|WIPE") })
    	exec(t, db, "WIPE")             // check not deadlocked
    	exec(t, db, "PANIC|Query|WIPE") // should run successfully: Exec does not call Query
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/plugin/v1beta1/server.go

    		}
    	}
    
    	// For now, we leave cleanup of the *entire* directory up to the Handler
    	// (even though we should in theory be able to just wipe the whole directory)
    	// because the Handler stores its checkpoint file (amongst others) in here.
    	if err := s.rhandler.CleanupPluginDirectory(s.socketDir); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. docs/yo/docs/index.md

    ---
    
    "_Ti ẹnikẹni ba n wa láti kọ iṣelọpọ API pẹ̀lú Python, èmi yóò ṣe'dúró fún **FastAPI**. Ó jẹ́ ohun tí **àgbékalẹ̀ rẹ̀ lẹ́wà**, **ó rọrùn láti lò** àti wipe ó ni **ìwọ̀n gíga**, o tí dí **bọtini paati** nínú alakọkọ API ìdàgbàsókè kikọ fún wa, àti pe o ni ipa lori adaṣiṣẹ àti àwọn iṣẹ gẹ́gẹ́ bíi Onímọ̀-ẹ̀rọ TAC tí órí Íńtánẹ́ẹ̀tì_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top