Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,048 for Initialize (0.5 sec)

  1. test/fixedbugs/issue33438.go

    	// The bug triggers only for OpMove, which is only used for unSSAable types.
    }
    
    func main() {
            var x *hasPtrs       // Can be local, global, or arg; nil or non-nil.
            var y *hasPtrs = nil // Must initialize to nil.
            *x = *y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 02 19:35:37 UTC 2019
    - 544 bytes
    - Viewed (0)
  2. src/runtime/vdso_linux_arm.go

    	vdsoArrayMax = 1<<31 - 1
    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6", 0x3ae75f6}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    	{"__vdso_clock_gettime", 0xd35ec75, 0x6e43a318, &vdsoClockgettimeSym},
    }
    
    // initialize to fall back to syscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 27 13:21:27 UTC 2018
    - 669 bytes
    - Viewed (0)
  3. pkg/proxy/node.go

    // OnNodeAdd is a handler for Node creates.
    func (n *NodePodCIDRHandler) OnNodeAdd(node *v1.Node) {
    	n.mu.Lock()
    	defer n.mu.Unlock()
    
    	podCIDRs := node.Spec.PodCIDRs
    	// initialize podCIDRs
    	if len(n.podCIDRs) == 0 && len(podCIDRs) > 0 {
    		n.logger.Info("Setting current PodCIDRs", "podCIDRs", podCIDRs)
    		n.podCIDRs = podCIDRs
    		return
    	}
    	if !reflect.DeepEqual(n.podCIDRs, podCIDRs) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/initializer/initializer_test.go

    func TestWantsServiceResolver(t *testing.T) {
    	sw := &serviceWanter{}
    	fsr := &fakeServiceResolver{}
    	i := NewPluginInitializer(nil, fsr)
    	i.Initialize(sw)
    	if got, ok := sw.got.(*fakeServiceResolver); !ok || got != fsr {
    		t.Errorf("plumbing fail - %v %v#", ok, got)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 08 07:19:52 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_initialize_variables_in_session_init_fail.mlir

    // RUN: tf-opt -tf-saved-model-initialize-variables-in-session-init -verify-diagnostics -fail-to-fetch-local-device-manager %s
    
    // expected-error@below{{No Local Device Manager}}
    module attributes {tf_saved_model.semantics, tf_saved_model.under_construction} {
    
      func.func @serving_default(%arg0: tensor<!tf_type.resource<tensor<100x50xf32>>> {tf.resource_name = "dense/kernel"}) -> (tensor<100x50xf32> {tf_saved_model.index_path = ["dense_2"]})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 994 bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/init.go

    package modcmd
    
    import (
    	"cmd/go/internal/base"
    	"cmd/go/internal/modload"
    	"context"
    )
    
    var cmdInit = &base.Command{
    	UsageLine: "go mod init [module-path]",
    	Short:     "initialize new module in current directory",
    	Long: `
    Init initializes and writes a new go.mod file in the current directory, in
    effect creating a new module rooted at the current directory. The go.mod file
    must not already exist.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 15:51:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/runtime/cgo/libcgo_unix.h

    // Copyright 2016 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.
    
    /*
     * Initialize g->stacklo.
     */
    extern void _cgo_set_stacklo(G *, uintptr *);
    
    /*
     * Call pthread_create, retrying on EAGAIN.
     */
    extern int _cgo_try_pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*);
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:06:46 UTC 2023
    - 684 bytes
    - Viewed (0)
  8. src/runtime/vdso_linux_ppc64x.go

    )
    
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_2.6.15", 0x75fcba5}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    	{"__kernel_clock_gettime", 0xb0cd725, 0xdfa941fd, &vdsoClockgettimeSym},
    }
    
    // initialize with vsyscall fallbacks
    var (
    	vdsoClockgettimeSym uintptr = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 672 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ExtraPropertiesExtensions.kt

        override fun <T> setValue(receiver: Any?, property: KProperty<*>, value: T) =
            extra.set(property.name, value)
    }
    
    
    /**
     * Returns a property delegate provider that will initialize the extra property to the value provided
     * by [initialValueProvider].
     *
     * Usage: `val answer by extra { 42 }`
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. .github/workflows/codeql-analysis.yml

          fail-fast: false
          matrix:
            language: ['java', 'javascript']
    
        steps:
        - name: Checkout repository
          uses: actions/checkout@v4
          with:
            fetch-depth: 2
    
        - name: Initialize CodeQL
          uses: github/codeql-action/init@v1
          with:
            languages: ${{ matrix.language }}
    
        - name: Set up JDK 17
          uses: actions/setup-java@v4
          with:
            java-version: '17'
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top