Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for workaround (0.15 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    				updatedNode.Status.Conditions[i].LastHeartbeatTime = metav1.Time{}
    				updatedNode.Status.Conditions[i].LastTransitionTime = metav1.Time{}
    			}
    
    			// Version skew workaround. See: https://github.com/kubernetes/kubernetes/issues/16961
    			assert.Equal(t, v1.NodeReady, updatedNode.Status.Conditions[len(updatedNode.Status.Conditions)-1].Type,
    				"NotReady should be last")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        auto output_type = mlir::cast<ShapedType>(concat_op.getType());
        if (!output_type.hasStaticShape()) {
          return failure();
        }
    
        auto new_shape_array = output_type.getShape();
        // This is to workaround the unnecessary cast i64 -> i32.
        SmallVector<int32_t, 4> new_shape_array_i32;
        for (auto size : new_shape_array) {
          new_shape_array_i32.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      mlir::ModuleOp* module_op_;
    };
    
    // Removes the `mhlo.custom_call @shape_assertion` custom call which represents
    // an assertion that the first operand (`assert_what`) evaluates to `true`.
    // This is a temporary workaround for unblocking dynamic model conversion
    // because starting from version 7, in presence of shape polymorphism JAX will
    // emit stablehlo.custom_call @shape_assertion to verify at compile time that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    			// CI has some issues with ipv6 DNS resolution, due to which
    			// we are not able to directly use the host name in the connectivity tests.
    			// Hence using a bogus IPv6 address with -HHost option as a workaround to
    			// simulate ServiceEntry based wildcard listener scenarios.
    			fakeExternalAddress = "2002::1"
    		} else {
    			fakeExternalAddress = "1.1.1.1"
    		}
    	}
    
    	testCases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top