Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for update_errors (0.12 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    	runSkips       = flag.Bool("run_skips", false, "run skipped tests (ignore skip and build tags)")
    	linkshared     = flag.Bool("linkshared", false, "")
    	updateErrors   = flag.Bool("update_errors", false, "update error messages in test file based on compiler output")
    	runoutputLimit = flag.Int("l", defaultRunOutputLimit(), "number of parallel runoutput tests to run")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	}
    
    	if p.options == nil {
    		// Provide a more informative error for the crash that would
    		// happen on the next line
    		panic("PatchOptions required but not provided")
    	}
    	objToUpdate = p.fieldManager.UpdateNoErrors(currentObject, objToUpdate, managerOrUserAgent(p.options.FieldManager, p.userAgent))
    	return objToUpdate, nil
    }
    
    func (p *jsonPatcher) createNewObject(_ context.Context) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller_test.go

    		t.Errorf("unexpected deletes\nexpected: %v\n  actual: %v", expected.List(), actual.List())
    	}
    }
    
    func TestStoreDaemonSetStatus(t *testing.T) {
    	getError := fmt.Errorf("fake get error")
    	updateError := fmt.Errorf("fake update error")
    	tests := []struct {
    		name                 string
    		updateErrorNum       int
    		getErrorNum          int
    		expectedUpdateCalled int
    		expectedGetCalled    int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top