Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for NotExist (0.3 sec)

  1. src/internal/trace/resources.go

    //
    // The format of the returned string is for debugging purposes and is subject to change.
    func (s GoState) String() string {
    	switch s {
    	case GoUndetermined:
    		return "Undetermined"
    	case GoNotExist:
    		return "NotExist"
    	case GoRunnable:
    		return "Runnable"
    	case GoRunning:
    		return "Running"
    	case GoWaiting:
    		return "Waiting"
    	case GoSyscall:
    		return "Syscall"
    	}
    	return "Bad"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r34/NoSourceTaskOutcomeCrossVersionSpec.groovy

    class NoSourceTaskOutcomeCrossVersionSpec extends ToolingApiSpecification {
        def setup() {
            buildFile << """
                task noSourceTask(type:Copy) {
                    from("notexist")
                    into("notexisteither")
                }"""
        }
    
        @TargetGradleVersion('>=3.4')
        def "tasks with no source is reported as NO-SOURCE"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. cmd/os-reliable.go

    		if err = osMkdirAll(dirPath, mode, baseDir); err != nil {
    			// Retry only for the first retryable error.
    			if osIsNotExist(err) && i == 0 {
    				i++
    				// Determine if os.NotExist error is because of
    				// baseDir's parent being present, retry it once such
    				// that the MkdirAll is retried once for the parent
    				// of dirPath.
    				// Because it is worth a retry to skip a different
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. pkg/scheduler/testing/wrappers.go

    		Key:      k,
    		Operator: metav1.LabelSelectorOpExists,
    	}
    	s.MatchExpressions = append(s.MatchExpressions, expression)
    	return s
    }
    
    // NotExist injects a matchExpression (with an operator NotExist) to the inner labelSelector.
    func (s *LabelSelectorWrapper) NotExist(k string) *LabelSelectorWrapper {
    	expression := metav1.LabelSelectorRequirement{
    		Key:      k,
    		Operator: metav1.LabelSelectorOpDoesNotExist,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top