Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for version1 (0.34 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    			ipvsErr:      "DeleteVirtualServer",
    			ok:           false,
    		},
    	}
    
    	for _, tc := range testCases {
    		ipvs := &fakeIpvs{tc.ipvsErr, false}
    		versioner := &fakeIPSetVersioner{version: tc.ipsetVersion, err: tc.ipsetErr}
    		err := CanUseIPVSProxier(ctx, ipvs, versioner, tc.scheduler)
    		if (err == nil) != tc.ok {
    			t.Errorf("Case [%s], expect %v, got err: %v", tc.name, tc.ok, err)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaFirDiagnostic.Deprecation
    
    internal class VersionRequirementDeprecationErrorImpl(
        override val reference: KaSymbol,
        override val version: Version,
        override val currentVersion: String,
        override val message: String,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // at least one result has been changed.
      // A tf.Cast() is inserted for any uses that isn't in the TensorFlow dialect.
      // `graph_version` indicates the current GraphDef compatibility versions
      // (the versions field in graph.proto).
      bool InferShapeForSingleOperation(Operation* op, int64_t max_iterations);
    
      // Infers shape on the provided region, including nested ones, iterate until
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    /*
    Copyright 2016 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // is not valid to use the [ResponseWriter] or read from the
    // [Request.Body] after or concurrently with the completion of the
    // ServeHTTP call.
    //
    // Depending on the HTTP client software, HTTP protocol version, and
    // any intermediaries between the client and the Go server, it may not
    // be possible to read from the [Request.Body] after writing to the
    // [ResponseWriter]. Cautious handlers should read the [Request.Body]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control_test.go

    }
    
    func fakeResourceVersion(object interface{}) {
    	obj, isObj := object.(metav1.Object)
    	if !isObj {
    		return
    	}
    	if version := obj.GetResourceVersion(); version == "" {
    		obj.SetResourceVersion("1")
    	} else if intValue, err := strconv.ParseInt(version, 10, 32); err == nil {
    		obj.SetResourceVersion(strconv.FormatInt(intValue+1, 10))
    	}
    }
    func TestParallelScale(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    	testenv.MustHaveExecPath(t, "sw_vers")
    	if vers, err := macosMajorVersion(t); err != nil {
    		if builder := testenv.Builder(); builder != "" {
    			t.Fatalf("unable to determine macOS version: %s", err)
    		} else {
    			t.Skip("unable to determine macOS version")
    		}
    	} else if vers < 11 {
    		t.Skip("behavior only enforced in macOS 11 and after")
    	}
    
    	// badCertData contains a cert that we parse as valid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

            then:
            if (GradleContextualExecuter.isConfigCache()) {
                result.assertConfigurationCacheStateLoaded()
            }
    
            where:
            agpVersion << TestedVersions.androidGradle.versions
        }
    }
    
    class AndroidPluginExpectations8 {
    
        static final EXPECTED_RESULTS_8_4 = [
            ':cityquiz:assembleDebug': SUCCESS,
            ':cityquiz:checkDebugAarMetadata': SUCCESS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      );
    
      let hasOptions = 0;
    }
    
    // These ops are named NonMaxSuppressionV4 & NonMaxSuppressionV5 to be
    // consistent with TensorFlow's naming. They are NOT 'versions' of NMS in the
    // sense that one is an incremental change over the other.
    // In reality NonMaxSuppressionV5 implements Soft Non Max Suppression and
    // NonMaxSuppressionV4 performs hard NMS.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. pkg/registry/batch/job/strategy_test.go

    /*
    Copyright 2015 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
Back to top