Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for NotExist (0.32 sec)

  1. src/cmd/trace/threadgen.go

    		// running threads with running Ps.
    		ctx.IncThreadStateCount(ctx.elapsed(start), traceviewer.ThreadStateRunning, -1)
    	}
    	// TODO(mknyszek): Consider modeling procs differently and have them be
    	// transition to and from NotExist when GOMAXPROCS changes. We can emit
    	// events for this to clearly delineate GOMAXPROCS changes.
    
    	if viewerEv.Name != "" {
    		ctx.Instant(viewerEv)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/trace/procgen.go

    			gs.syscallEnd(start, true, ctx)
    			gs.stop(start, ev.Stack(), ctx)
    			delete(g.inSyscall, proc)
    		}
    	}
    	// TODO(mknyszek): Consider modeling procs differently and have them be
    	// transition to and from NotExist when GOMAXPROCS changes. We can emit
    	// events for this to clearly delineate GOMAXPROCS changes.
    
    	if viewerEv.Name != "" {
    		ctx.Instant(viewerEv)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/internal/trace/summary.go

    	// but can be a state transition event from NotExist or Undetermined
    	// if the region is a synthetic region representing task inheritance
    	// from the parent goroutine.
    	Start *Event
    
    	// Region end event. Normally EventRegionEnd event or nil,
    	// but can be a state transition event to NotExist if the goroutine
    	// terminated without explicitly ending the region.
    	End *Event
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. src/internal/trace/trace_test.go

    		const mainLine = 21
    		want := []evDesc{
    			{trace.EventStateTransition, "Goroutine Running->Runnable", []frame{
    				{"main.main", mainLine + 82},
    			}},
    			{trace.EventStateTransition, "Goroutine NotExist->Runnable", []frame{
    				{"main.main", mainLine + 11},
    			}},
    			{trace.EventStateTransition, "Goroutine Running->Waiting", []frame{
    				{"runtime.block", 0},
    				{"main.main.func1", 0},
    			}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/repo.go

    	// along with a nil error if the list of matching versions
    	// is known to be empty.
    	//
    	// If the underlying repository does not exist,
    	// Versions returns an error matching errors.Is(_, os.NotExist).
    	Versions(ctx context.Context, prefix string) (*Versions, error)
    
    	// Stat returns information about the revision rev.
    	// A revision can be any identifier known to the underlying service:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_mounter_test.go

    	}
    	defer os.RemoveAll(existingMountPath)
    
    	tests := []struct {
    		desc           string
    		dir            string
    		expectedResult bool
    	}{
    		{
    			desc:           "NotExist dir",
    			dir:            "/tmp/NotExist",
    			expectedResult: false,
    		},
    		{
    			desc:           "Existing dir",
    			dir:            existingMountPath,
    			expectedResult: false,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. src/path/filepath/path_test.go

    func TestEvalSymlinksIsNotExist(t *testing.T) {
    	testenv.MustHaveSymlink(t)
    
    	defer chtmpdir(t)()
    
    	_, err := filepath.EvalSymlinks("notexist")
    	if !os.IsNotExist(err) {
    		t.Errorf("expected the file is not found, got %v\n", err)
    	}
    
    	err = os.Symlink("notexist", "link")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.Remove("link")
    
    	_, err = filepath.EvalSymlinks("link")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. pkg/controller/disruption/disruption_test.go

    	_, ctx := ktesting.NewTestContext(t)
    	dc, _ := newFakeDisruptionController(ctx)
    	pdb, _ := newMinAvailablePodDisruptionBudget(t, intstr.FromString("67%"))
    	add(t, dc.pdbStore, pdb)
    	if err := dc.sync(ctx, "notExist"); err != nil {
    		t.Errorf("Unexpected error: %v, expect nil", err)
    	}
    }
    
    func TestUpdateDisruptedPods(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	dc, ps := newFakeDisruptionController(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	}{
    		"invalid pattern": {
    			input:        "[a-z*.yaml",
    			expectedErr:  "syntax error in pattern",
    			inputInError: true,
    		},
    		"file does not exist": {
    			input:        "../../artifacts/guestbook/notexist.yaml",
    			expectedErr:  "does not exist",
    			inputInError: true,
    		},
    		"directory does not exist and valid glob": {
    			input:        "../../artifacts/_does_not_exist_/*.yaml",
    			expectedErr:  "does not exist",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework_test.go

    		// If initErr is true, we expect framework initialization to fail.
    		initErr bool
    	}{
    		{
    			name:    "enabled Score plugin doesn't exist in registry",
    			plugins: buildScoreConfigDefaultWeights("notExist"),
    			initErr: true,
    		},
    		{
    			name:    "enabled Score plugin doesn't extend the ScorePlugin interface",
    			plugins: buildScoreConfigDefaultWeights(pluginNotImplementingScore),
    			initErr: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
Back to top