Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,091 for GETs (0.04 sec)

  1. cmd/kubeadm/app/cmd/phases/util.go

    limitations under the License.
    */
    
    package phases
    
    import (
    	"k8s.io/component-base/version"
    
    	kubeadmapiv1 "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta3"
    )
    
    // SetKubernetesVersion gets the current Kubeadm version and sets it as KubeadmVersion in the config,
    // unless it's already set to a value different from the default.
    func SetKubernetesVersion(cfg *kubeadmapiv1.ClusterConfiguration) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 14:17:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/util/cgroups_unsupported.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package util
    
    // GetPids gets pids of the desired cgroup
    func GetPids(cgroupPath string) ([]int, error) {
    	return nil, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 732 bytes
    - Viewed (0)
  3. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g1 := t.Generation(1)
    
    	// A goroutine gets created on a running P, then starts running.
    	b0 := g1.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b0.Event("GoCreate", trace.GoID(5), testgen.NoStack, testgen.NoStack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_translate_flags.h

    extern bool emit_select_tf_ops;
    extern bool emit_custom_ops;
    // The flag to control whether to lower tensorlist ops into TF ops.
    extern bool lower_tensor_list_ops;
    // The flag to control whether debug info gets stripped on export.
    extern bool strip_debug_info;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 23 05:49:32 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         * the default value the permissions start out with before the configuration is applied.
         * For details see {@link ConfigurableFilePermissions}.
         *
         * @param configureAction The configuration that gets applied to the newly created {@code FilePermissions}.
         *
         * @since 8.3
         */
        ConfigurableFilePermissions filePermissions(Action<? super ConfigurableFilePermissions> configureAction);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h

    bool IsInStableHloOpRegion(Operation* op);
    
    // Checks if a given einsum op is supported for XlaDotV2 quantization.
    bool IsEinsumSupportedByXlaDotV2(StringAttr equation_attr);
    
    // Gets the quantization method from `op`. It is retrieved from the
    // `kQuantizationMethodAttr` string attribute. Returns
    // `absl::InvalidArgumentError` when the attribute doesn't exist. Returns
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width.go

    		return int(we.InitialSeats)
    	}
    
    	return int(we.FinalSeats)
    }
    
    // objectCountGetterFunc represents a function that gets the total
    // number of objects for a given resource.
    type objectCountGetterFunc func(string) (int64, error)
    
    // watchCountGetterFunc represents a function that gets the total
    // number of watchers potentially interested in a given request.
    type watchCountGetterFunc func(*apirequest.RequestInfo) int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

            gradle6Result.assertOutputContains("Hello from Gradle <7.0")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/24609")
        def "when plugin request fails because plugin requires a higher version of Gradle, gets clear custom error message"() {
            given:
            def producer = file('producer')
            def consumer = file('consumer')
            def pluginModule = mavenRepo.module('com.example', 'producer', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. pkg/scheduler/testing/framework/fake_listers.go

    // List returns []v1.ReplicationController, the list of all ReplicationControllers.
    func (f ControllerLister) List(labels.Selector) ([]*v1.ReplicationController, error) {
    	return f, nil
    }
    
    // GetPodControllers gets the ReplicationControllers that have the selector that match the labels on the given pod
    func (f ControllerLister) GetPodControllers(pod *v1.Pod) (controllers []*v1.ReplicationController, err error) {
    	var selector labels.Selector
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testsanitizers/testdata/arena_fail.go

    	// should poison the arena memory.
    	//
    	// MSAN should detect that this access is to freed
    	// memory. This may crash with an "accessed freed arena
    	// memory" error before MSAN gets a chance, but if MSAN
    	// was not enabled there would be a chance that this
    	// could fail to crash on its own.
    	println(x[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 700 bytes
    - Viewed (0)
Back to top