Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 519 for Recognizes (0.22 sec)

  1. guava/src/com/google/common/base/ElementTypesAreNonnullByDefault.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target(TYPE)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 30 14:50:30 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/ElementTypesAreNonnullByDefault.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target(TYPE)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/test/groovy/org/gradle/api/JavaVersionSpec.groovy

        }
    
        def 'can recognize $build'() {
            expect:
            JavaVersion.toVersion('9+0') == JavaVersion.VERSION_1_9
            JavaVersion.toVersion('3.14+9999900') == JavaVersion.VERSION_1_3
            JavaVersion.toVersion('9-pre+105') == JavaVersion.VERSION_1_9
            JavaVersion.toVersion('6.0.42-8beta+4') == JavaVersion.VERSION_1_6
        }
    
        def 'can recognize version with $opt'() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. test/escape_goto.go

    // Test escape analysis for goto statements.
    
    package escape
    
    var x bool
    
    func f1() {
    	var p *int
    loop:
    	if x {
    		goto loop
    	}
    	// BAD: We should be able to recognize that there
    	// aren't any more "goto loop" after here.
    	p = new(int) // ERROR "escapes to heap"
    	_ = p
    }
    
    func f2() {
    	var p *int
    	if x {
    	loop:
    		goto loop
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 677 bytes
    - Viewed (0)
  5. cluster/addons/calico-policy-controller/ipamconfig-crd.yaml

        schema:
          openAPIV3Schema:
            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. SECURITY.md

    models or graphs is equivalent to running untrusted code.
    
    If you need to run untrusted models, execute them inside a
    [**sandbox**](https://developers.google.com/code-sandboxing). Memory corruptions
    in TensorFlow ops can be recognized as security issues only if they are
    reachable and exploitable through production-grade, benign models.
    
    ### Compilation
    
    Compiling models via the recommended entry points described in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. test/fixedbugs/issue43099.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check to make sure we don't try to constant fold a divide by zero.
    // This is a tricky test, as we need a value that's not recognized as 0
    // until lowering (otherwise it gets handled in a different path).
    
    package p
    
    func f() {
    	var i int
    	var s string
    	for i > 0 {
    		_ = s[0]
    		i++
    	}
    
    	var c chan int
    	c <- 1 % i
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 03:18:00 UTC 2020
    - 858 bytes
    - Viewed (0)
  8. src/runtime/testdata/testprogcgo/traceback.go

    // license that can be found in the LICENSE file.
    
    package main
    
    // This program will crash.
    // We want the stack trace to include the C functions.
    // We use a fake traceback, and a symbolizer that dumps a string we recognize.
    
    /*
    #cgo CFLAGS: -g -O0
    
    // Defined in traceback_c.c.
    extern int crashInGo;
    int tracebackF1(void);
    void cgoTraceback(void* parg);
    void cgoSymbolizer(void* parg);
    */
    import "C"
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 24 21:47:44 UTC 2020
    - 949 bytes
    - Viewed (0)
  9. test/codegen/issue56440.go

    // asmcheck
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check to make sure that we recognize when the length of an append
    // is constant. We check this by making sure that the constant length
    // is folded into a load offset.
    
    package p
    
    func f(x []int) int {
    	s := make([]int, 3)
    	s = append(s, 4, 5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:40:49 UTC 2022
    - 689 bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultOperatingSystemTest.groovy

            expect:
            os.toString() == "operating system 'sunos'"
            os.displayName == "operating system 'sunos'"
            os.internalOs == OperatingSystem.SOLARIS
        }
    
        def "recognises key operating systems"() {
            def os = new DefaultOperatingSystem(name)
    
            expect:
            os.name == name
            os.internalOs == internalOs
    
            where:
            name      | internalOs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top