Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for pubs (0.17 sec)

  1. pkg/volume/csi/csi_mounter_test.go

    		}
    
    		// ensure call went all the way
    		pubs := csiMounter.csiClient.(*fakeCsiDriverClient).nodeClient.GetNodePublishedVolumes()
    		if pubs[csiMounter.volumeID].Path != csiMounter.GetPath() {
    			t.Error("csi server may not have received NodePublishVolume call")
    		}
    		if pubs[csiMounter.volumeID].VolumeMountGroup != tc.expectedFSGroupInNodePublish {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    					if q, ok := s.(*Qualified); ok {
    						a := q.Scope
    						if t, ok := a.(*Template); ok {
    							st.subs.add(t.Name)
    							st.subs.add(t)
    						} else {
    							st.subs.add(a)
    						}
    						return s
    					}
    				}
    				n := st.sourceName()
    				if len(st.str) > 0 && st.str[0] == 'I' {
    					st.subs.add(n)
    					args := st.templateArgs()
    					n = &Template{Name: n, Args: args}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    		args                    *config.DefaultPreemptionArgs
    		nodeNames               []string
    		testPods                []*v1.Pod
    		initPods                []*v1.Pod
    		registerPlugins         []tf.RegisterPluginFunc
    		pdbs                    []*policy.PodDisruptionBudget
    		fakeFilterRC            framework.Code // return code for fake filter plugin
    		disableParallelism      bool
    		expected                [][]candidate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

            -URLs 'https://storage.googleapis.com/gke-release/winnode/config/sdn/master/hns.psm1'
      }
    }
    
    # Downloads the Kubernetes binaries from kube-env's NODE_BINARY_TAR_URL and
    # puts them in a subdirectory of $env:K8S_DIR.
    #
    # Required ${kube_env} keys:
    #   NODE_BINARY_TAR_URL
    function DownloadAndInstall-KubernetesBinaries {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    			}
    		}
    	}
    	return queueingStrategy
    }
    
    // addUnschedulableIfNotPresentWithoutQueueingHint inserts a pod that cannot be scheduled into
    // the queue, unless it is already in the queue. Normally, PriorityQueue puts
    // unschedulable pods in `unschedulablePods`. But if there has been a recent move
    // request, then the pod is put in `podBackoffQ`.
    // TODO: This function is called only when p.isSchedulingQueueHintEnabled is false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (FNEG (F(ABS|NABS) x)) => (F(NABS|ABS) x)
    
    // floating-point fused multiply-add/sub
    (F(ADD|SUB) (FMUL x y) z) && x.Block.Func.useFMA(v) => (FM(ADD|SUB) x y z)
    (F(ADDS|SUBS) (FMULS x y) z) && x.Block.Func.useFMA(v) => (FM(ADDS|SUBS) x y z)
    
    // Arch-specific inlining for small or disjoint runtime.memmove
    (SelectN [0] call:(CALLstatic {sym} s1:(MOVDstore _ (MOVDconst [sz]) s2:(MOVDstore  _ src s3:(MOVDstore {t} _ dst mem)))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            when:
            config.resolve()
    
            then:
            parent.observedState == ConfigurationInternal.InternalState.GRAPH_RESOLVED
        }
    
        def "resolving configuration puts it into the right state and broadcasts events"() {
            def listenerBroadcaster = Mock(AnonymousListenerBroadcast)
            def listener = Mock(DependencyResolutionListener)
            def config
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	reflector.WatchListPageSize = storageWatchListPageSize
    	// When etcd loses leader for 3 cycles, it returns error "no leader".
    	// We don't want to terminate all watchers as recreating all watchers puts high load on api-server.
    	// In most of the cases, leader is reelected within few cycles.
    	reflector.MaxInternalErrorRetryDuration = time.Second * 30
    	// since the watch-list is provided by the watch cache instruct
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/net/http/request.go

    //
    // For all requests, ParseForm parses the raw query from the URL and updates
    // r.Form.
    //
    // For POST, PUT, and PATCH requests, it also reads the request body, parses it
    // as a form and puts the results into both r.PostForm and r.Form. Request body
    // parameters take precedence over URL query string values in r.Form.
    //
    // If the request Body's size has not already been limited by [MaxBytesReader],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. src/runtime/mgcmark.go

    func gcWakeAllAssists() {
    	lock(&work.assistQueue.lock)
    	list := work.assistQueue.q.popList()
    	injectglist(&list)
    	unlock(&work.assistQueue.lock)
    }
    
    // gcParkAssist puts the current goroutine on the assist queue and parks.
    //
    // gcParkAssist reports whether the assist is now satisfied. If it
    // returns false, the caller must retry the assist.
    func gcParkAssist() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top