Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,118 for checkSign (0.21 sec)

  1. src/internal/syscall/unix/kernel_version_solaris.go

    	if err == nil {
    		syscall.Close(s)
    		return true
    	}
    	if err != syscall.EPROTONOSUPPORT && err != syscall.EINVAL {
    		// Something wrong with socket(), fall back to checking the kernel version.
    		major, minor := KernelVersion()
    		if runtime.GOOS == "illumos" {
    			return major > 5 || (major == 5 && minor >= 11) // minimal requirement is SunOS 5.11
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue15039.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	const fffd = "\uFFFD"
    
    	// runtime.intstring used to convert int64 to rune without checking
    	// for truncation.
    	u := uint64(0x10001f4a9)
    	big := string(u)
    	if big != fffd {
    		panic("big != bad")
    	}
    
    	// cmd/compile used to require integer constants to fit into an "int".
    	const huge = string(1<<100)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 10:28:23 UTC 2016
    - 545 bytes
    - Viewed (0)
  3. hack/conformance/check_conformance_test_requirements.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.
    */
    
    // This tool is for checking conformance e2e tests follow the requirements
    // which is https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/conformance-tests.md#conformance-test-requirements
    package main
    
    import (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 29 06:30:57 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/permissions/KaAnalysisPermissionChecker.kt

    import com.intellij.openapi.project.Project
    import org.jetbrains.kotlin.analysis.api.platform.KaEngineService
    
    /**
     * [KaAnalysisPermissionChecker] is an *engine service* which allows checking whether analysis is currently allowed.
     */
    public interface KaAnalysisPermissionChecker : KaEngineService {
        public fun isAnalysisAllowed(): Boolean
    
        public fun getRejectionReason(): String
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 855 bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/public/README.md

    # TensorFlow Saved Model C API
    
    ## Small ConcreteFunction Example
    
    The following example loads a saved model from `"/path/to/model"` and
    executes a function `f` taking no arguments and returning one single
    value (error checking is omitted for simplicity):
    
    ```c
    TF_Status* status = TF_NewStatus();
    TFE_ContextOptions* ctx_options = TFE_NewContextOptions();
    TFE_Context* ctx = TFE_NewContext(ctx_options, status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 16 23:02:56 UTC 2020
    - 904 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/objectmeta_test.go

    	val, _ := json.Marshal(original.UnstructuredContent())
    	if _, err := etcdclient.Put(ctx, key, string(val)); err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	t.Logf("Checking that invalid objects can be deleted")
    	noxuResourceClient := newNamespacedCustomResourceClient("default", dynamicClient, noxuDefinition)
    	if err := noxuResourceClient.Delete(context.TODO(), "foo", metav1.DeleteOptions{}); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 19K bytes
    - Viewed (0)
  7. pkg/controller/validatingadmissionpolicystatus/config/types.go

    type ValidatingAdmissionPolicyStatusControllerConfiguration struct {
    	// ConcurrentPolicySyncs is the number of policy objects that are
    	// allowed to sync concurrently. Larger number = quicker type checking,
    	// but more CPU (and network) load.
    	// The default value is 5.
    	ConcurrentPolicySyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 1022 bytes
    - Viewed (0)
  8. src/go/types/named.go

    //  4. instantiated from a generic type
    //
    // In cases 1, 3, and 4, it is possible that the underlying type or methods of
    // N may not be immediately available.
    //  - During type-checking, we allocate N before type-checking its underlying
    //    type or methods, so that we may resolve recursive references.
    //  - When loading from export data, we may load its methods and underlying
    //    type lazily using a provided load function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileAccess.java

         * Runs the given action under an exclusive lock on the target file, without checking its integrity. If the given action fails, the lock is marked as uncleanly unlocked.
         *
         * <p>This method should be used when it is of no consequence if the target was not previously unlocked, e.g. the content is being replaced.
         *
         * <p>Besides not performing integrity checking, this method shares the locking semantics of {@link #updateFile(Runnable)}
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    	"k8s.io/apimachinery/pkg/util/version"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/storage"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/ptr"
    )
    
    var (
    	// Define these static versions to use for checking version of etcd, issue on kubernetes #123192
    	v3_4_31 = version.MustParseSemantic("3.4.31")
    	v3_5_0  = version.MustParseSemantic("3.5.0")
    	v3_5_13 = version.MustParseSemantic("3.5.13")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top