Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 770 for emberi (0.11 sec)

  1. pkg/proxy/ipvs/ipset/ipset.go

    // The raw output of ipset command `ipset list {set}` is similar to,
    // Name: foobar
    // Type: hash:ip,port
    // Revision: 2
    // Header: family inet hashsize 1024 maxelem 65536
    // Size in memory: 16592
    // References: 0
    // Members:
    // 192.168.1.2,tcp:8080
    // 192.168.1.1,udp:53
    var EntryMemberPattern = "(?m)^(.*\n)*Members:\n"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. test/embedvers.go

    // errorcheck -lang=go1.15
    
    // Copyright 2021 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.
    
    package p
    
    import _ "embed"
    
    //go:embed x.txt // ERROR "go:embed requires go1.16 or later"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 19 20:07:52 UTC 2021
    - 292 bytes
    - Viewed (0)
  3. src/internal/cpu/cpu_arm64_darwin.go

    	ARM64.HasSHA2 = true
    }
    
    //go:noescape
    func getsysctlbyname(name []byte) (int32, int32)
    
    // sysctlEnabled should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/gopkg
    //   - github.com/songzhibin97/gkit
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname sysctlEnabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. test/embedfunc.go

    // errorcheck
    
    // Copyright 2021 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.
    
    package p
    
    import _ "embed"
    
    func f() {
    	//go:embed x.txt // ERROR "go:embed cannot apply to var inside func"
    	var x string
    	_ = x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 19 20:07:52 UTC 2021
    - 308 bytes
    - Viewed (0)
  5. src/runtime/time_nofake.go

    // linkname'ing this and set it to a write function.
    //
    // overrideWrite should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - golang.zx2c4.com/wireguard/windows
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname overrideWrite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionProvider.kt

    /**
     * Allows extending Kotlin resolution by generating additional declarations.
     *
     * Those declarations will be analyzed the same way as they were just regular source files inside the project.
     *
     * All member implementations should consider caching the results for subsequent invocations.
     */
    public abstract class KaResolveExtensionProvider {
        /**
         * Provides a list of [KaResolveExtension]s for a given [KtModule].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/AnnotationMember.java

    import com.google.common.collect.ImmutableSortedSet;
    
    import java.util.Collection;
    import java.util.SortedSet;
    import java.util.TreeSet;
    
    public class AnnotationMember extends Member implements Comparable<AnnotationMember> {
    
        private final SortedSet<AnnotationValue<?>> values = new TreeSet<>();
        private final boolean visible;
    
        public AnnotationMember(String name, boolean visible) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. pkg/kubelet/container/runtime_cache_fake.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package container
    
    import "context"
    
    // TestRuntimeCache embeds runtimeCache with some additional methods for testing.
    // It must be declared in the container package to have visibility to runtimeCache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. src/runtime/symtabinl.go

    // fall back to the outermost frame.
    //
    // newInlineUnwinder should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname newInlineUnwinder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/runtime/rand.go

    // the rule is that other packages using runtime-provided
    // randomness must always use rand.
    //
    // cheaprand should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/gopkg
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cheaprand
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top