Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for workaround (0.26 sec)

  1. cluster/gce/gci/configure-helper.sh

      if [ "${nvmeblocknum}" -eq "0" ] && [ "${nvmefsnum}" -eq "0" ]; then
        echo "No local NVMe SSD specified."
        return
      fi
      local i=0
      for ssd in /dev/nvme*; do
        if [ -e "${ssd}" ]; then
          # This workaround to find if the NVMe device is a disk is required because
          # the existing Google images does not expose NVMe devices in /dev/disk/by-id
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    	rsOpts.VolumeSpec = volumeToMount.VolumeSpec
    
    	_, resizeErr := expandableVolumePlugin.NodeExpand(rsOpts)
    	if resizeErr != nil {
    		// This is a workaround for now, until RecoverFromVolumeExpansionFailure feature goes GA.
    		// If RecoverFromVolumeExpansionFailure feature is enabled, we will not ever hit this state, because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    			netpollBreak()
    		}
    	} else {
    		// There are no threads in the network poller, try to get
    		// one there so it can handle new timers.
    		if GOOS != "plan9" { // Temporary workaround - see issue #42303.
    			wakep()
    		}
    	}
    }
    
    func resetspinning() {
    	gp := getg()
    	if !gp.m.spinning {
    		throw("resetspinning: not a spinning m")
    	}
    	gp.m.spinning = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    	}
    	s, bindingChan, errChan := setupTestScheduler(ctx, t, queuedPodStore, scache, informerFactory, broadcaster, fns...)
    	return s, bindingChan, errChan
    }
    
    // This is a workaround because golint complains that errors cannot
    // end with punctuation.  However, the real predicate error message does
    // end with a period.
    func makePredicateError(failReason string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        // Compiles:
        unused = whenAllComplete(futureA, futureB).call(combiner, directExecutor());
    
        // Does not compile:
        // unused = whenAllComplete(futures).call(combiner);
    
        // Workaround for the above:
        unused = whenAllComplete(asList(futures)).call(combiner, directExecutor());
      }
    
      @J2ktIncompatible
      @GwtIncompatible // threads
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        // Compiles:
        unused = whenAllComplete(futureA, futureB).call(combiner, directExecutor());
    
        // Does not compile:
        // unused = whenAllComplete(futures).call(combiner);
    
        // Workaround for the above:
        unused = whenAllComplete(asList(futures)).call(combiner, directExecutor());
      }
    
      @J2ktIncompatible
      @GwtIncompatible // threads
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		},
    		{
    			name: "block create: new min or allow higher than oldValue",
    			obj:  9,
    			// Can't use != null because type is integer and no overload
    			// workaround by comparing type, but kinda hacky
    			schema: cloneWithRule(&integerType, "self >= 10 || (oldSelf.hasValue() && oldSelf.value() <= self)"),
    			errors: []string{"failed rule"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    			// the server's port should not be reused for another server yet.)
    			<-gotOnShutdown
    			// TODO(#59038): The HTTP/2 server empirically does not always reject new
    			// requests. As a workaround, loop until we see a failure.
    			for !t.Failed() {
    				res, err := cst.c.Get(cst.ts.URL)
    				if err != nil {
    					break
    				}
    				out, _ := io.ReadAll(res.Body)
    				res.Body.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top