Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for WIPE (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top