Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for notexist (0.38 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/path/filepath/path_test.go

    	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")
    	if !os.IsNotExist(err) {
    		t.Errorf("expected the file is not found, got %v\n", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/reuse_git.txt

    stdout '"Hash": "fc3a09f3dc5cfe0d7a743ea18f1f5226e68b3777"'
    ! stdout 'RepoSum'
    
    # go mod download vcstest/hello@nonexist should fail, still print origin info
    ! go mod download -x -json vcs-test.golang.org/git/hello.git@nonexist
    cp stdout hellononexist.json
    stdout '"Version": "nonexist"'
    stdout '"Error":.*unknown revision nonexist'
    stdout '"RepoSum": "r1:c0/9JCZ25lxoBiK3[+]3BhACU4giH49flcJmBynJ[+]Jvmc="'
    ! stdout '"(TagPrefix|TagSum|Ref|Hash)"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. pkg/scheduler/extender.go

    			nodeNameSlice = append(nodeNameSlice, node.Node().Name)
    		}
    		nodeNames = &nodeNameSlice
    	} else {
    		nodeList = &v1.NodeList{}
    		for _, node := range nodes {
    			nodeList.Items = append(nodeList.Items, *node.Node())
    		}
    	}
    
    	args = &extenderv1.ExtenderArgs{
    		Pod:       pod,
    		Nodes:     nodeList,
    		NodeNames: nodeNames,
    	}
    
    	if err := h.send(h.filterVerb, args, &result); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. pkg/volume/util/volumepathhandler/volume_path_handler.go

    		// Check if linkPath still exists
    		if _, err := os.Stat(linkPath); err != nil {
    			if !os.IsNotExist(err) {
    				return fmt.Errorf("failed to check if path %s exists: %v", linkPath, err)
    			}
    			// linkPath has already been removed
    			return nil
    		}
    		// Remove file
    		if err := os.Remove(linkPath); err != nil && !os.IsNotExist(err) {
    			return fmt.Errorf("failed to remove file %s: %v", linkPath, err)
    		}
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                final Document doc = builder.parse(is);
                final NodeList snapshotNodeList = doc.getElementsByTagName("snapshot");
                if (snapshotNodeList.getLength() > 0) {
                    final NodeList nodeList = snapshotNodeList.item(0).getChildNodes();
                    for (int i = 0; i < nodeList.getLength(); i++) {
                        final Node node = nodeList.item(i);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        }
    
        protected void parseTextContent(final Node node, final StringBuilder buf) {
            if (node.hasChildNodes()) {
                final NodeList nodeList = node.getChildNodes();
                for (int i = 0; i < nodeList.getLength(); i++) {
                    final Node childNode = nodeList.item(i);
                    parseTextContent(childNode, buf);
                }
            } else if (node.getNodeType() == Node.TEXT_NODE) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
Back to top