Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for pubs (0.09 sec)

  1. pkg/volume/csi/csi_block_test.go

    	}
    
    	err = csiUnmapper.TearDownDevice(globalMapPath, "/dev/test")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// ensure csi client call and node unpblished
    	pubs := csiUnmapper.csiClient.(*fakeCsiDriverClient).nodeClient.GetNodePublishedVolumes()
    	if _, ok := pubs[csiUnmapper.volumeID]; ok {
    		t.Error("csi server may not have received NodeUnpublishVolume call")
    	}
    
    	// ensure csi client call and node unstaged
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  2. src/archive/tar/format.go

    	// Most notably, it cannot support sparse files, files larger than 8GiB,
    	// filenames larger than 256 characters, and non-ASCII filenames.
    	//
    	// Reference:
    	//	http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_06
    	FormatUSTAR
    
    	// FormatPAX represents the PAX header format defined in POSIX.1-2001.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. src/os/signal/signal_cgo_test.go

    	// blocking SIGTTOU signals or the process is ignoring SIGTTOU
    	// signals, the process shall be allowed to perform the
    	// operation, and no signal is sent."
    	//  -https://pubs.opengroup.org/onlinepubs/9699919799/functions/tcsetpgrp.html
    	//
    	// We are changing the terminal to put us in the foreground, so
    	// we must ignore SIGTTOU. We are also an orphaned process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/time/zoneinfo.go

    	// The tzdata information can be followed by a string that describes
    	// how to handle DST transitions not recorded in zoneTrans.
    	// The format is the TZ environment variable without a colon; see
    	// https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap08.html.
    	// Example string, for America/Los_Angeles: PST8PDT,M3.2.0,M11.1.0
    	extend string
    
    	// Most lookups will be for the current time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. src/runtime/sema.go

    	// addresses, it is kept balanced on average by maintaining a heap ordering
    	// on the ticket: s.ticket <= both s.prev.ticket and s.next.ticket.
    	// https://en.wikipedia.org/wiki/Treap
    	// https://faculty.washington.edu/aragon/pubs/rst89.pdf
    	//
    	// s.ticket compared with zero in couple of places, therefore set lowest bit.
    	// It will not affect treap's quality noticeably.
    	s.ticket = cheaprand() | 1
    	s.parent = last
    	*pt = s
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/archive/tar/common.go

    }
    
    // sysStat, if non-nil, populates h from system-dependent fields of fi.
    var sysStat func(fi fs.FileInfo, h *Header, doNameLookups bool) error
    
    const (
    	// Mode constants from the USTAR spec:
    	// See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_06
    	c_ISUID = 04000 // Set uid
    	c_ISGID = 02000 // Set gid
    	c_ISVTX = 01000 // Save text (sticky bit)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. src/path/filepath/path_test.go

    	if err := os.Symlink(dir, abslink); err != nil {
    		t.Fatal(err)
    	}
    
    	linklink := filepath.Join(td, "linklink")
    	if err := os.Symlink("link", linklink); err != nil {
    		t.Fatal(err)
    	}
    
    	// Per https://pubs.opengroup.org/onlinepubs/9699919799.2013edition/basedefs/V1_chap04.html#tag_04_12:
    	// “A pathname that contains at least one non- <slash> character and that ends
    	// with one or more trailing <slash> characters shall not be resolved
    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. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

            def publication = pub('mock', "pub-group", "pub-name", "pub-version", root)
            def publication2 = pub('pub2', "pub-group-child1", "pub-name-child1", "pub-version-child1", child1)
            def publication3 = pub('pub3', "pub-group-child2", "pub-name-child2", "pub-version-child2", child2)
            def publication4 = pub('pub4', "pub-group-child3", "pub-name-child3", "pub-version-child3", child3)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/storage/eviction_test.go

    	testcases := []struct {
    		name     string
    		pdbs     []runtime.Object
    		policies []*policyv1.UnhealthyPodEvictionPolicyType
    		eviction *policy.Eviction
    
    		badNameInURL bool
    
    		expectError   string
    		expectDeleted bool
    		podPhase      api.PodPhase
    		podName       string
    	}{
    		{
    			name: "matching pdbs with no disruptions allowed, pod running",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/storage/eviction.go

    		if err != nil {
    			// This object has an invalid selector, it does not match the pod
    			continue
    		}
    		if !selector.Matches(labels.Set(pod.Labels)) {
    			continue
    		}
    
    		pdbs = append(pdbs, pdb)
    	}
    
    	return pdbs, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
Back to top