Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 152 for ninit (0.68 sec)

  1. src/cmd/go/internal/modload/init.go

    // calling Init and Enabled, the main package can call this function.
    func WillBeEnabled() bool {
    	if modRoots != nil || cfg.ModulesEnabled {
    		// Already enabled.
    		return true
    	}
    	if initialized {
    		// Initialized, not enabled.
    		return false
    	}
    
    	// Keep in sync with Init. Init does extra validation and prints warnings or
    	// exits, so it can't call this function directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/adminlte.min.js.map

    $(this).data(DATA_KEY)\n        const _options = $.extend({}, Default, $(this).data())\n\n        if (!data) {\n          data = new Layout($(this), _options)\n          $(this).data(DATA_KEY, data)\n        }\n\n        if (config === 'init' || config === '') {\n          data['_init']()\n        }\n      })\n    }\n  }\n\n  /**\n   * Data API\n   * ====================================================\n   */\n\n  $(window).on('load', () => {\n    Layout._jQueryInterface.call($('body'))\n  })\n\n  $(Selector.SIDEBAR...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // to be taken for the init containers. This includes actions to initialize the
    // init containers and actions to keep restartable init containers running.
    // computeInitContainerActions returns true if pod has been initialized.
    //
    // The actions include:
    // - Start the first init container that has not been started.
    // - Restart all restartable init containers that have started but are not running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	assert.NoError(t, result.Error())
    	verifyContainerStatuses(t, fakeRuntime, expected, "init container still running; do nothing")
    
    	// 3. should create all app containers because init container finished.
    	// Stop init container instance 0.
    	sandboxIDs, err := m.getSandboxIDByPodUID(ctx, pod.UID, nil)
    	require.NoError(t, err)
    	sandboxID := sandboxIDs[0]
    	initID0, err := fakeRuntime.GetContainerID(sandboxID, initContainers[0].Name, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. okhttp/api/okhttp.api

    	public final fun getNONE ()Lokhttp3/ConnectionListener;
    }
    
    public final class okhttp3/ConnectionPool {
    	public fun <init> ()V
    	public fun <init> (IJLjava/util/concurrent/TimeUnit;)V
    	public fun <init> (IJLjava/util/concurrent/TimeUnit;Lokhttp3/ConnectionListener;)V
    	public synthetic fun <init> (IJLjava/util/concurrent/TimeUnit;Lokhttp3/ConnectionListener;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			name:                "not allow pod with restartable init containers if sidecar containers is disabled",
    			pod:                 newPodWithRestartableInitContainers(),
    			wantPreFilterStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable, "Pod has a restartable init container and the SidecarContainers feature is disabled"),
    		},
    		{
    			name:                    "allow pod without restartable init containers if sidecar containers is enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller_test.go

    	}
    }
    
    func TestSyncEndpointsItemsPreserveNoSelector(t *testing.T) {
    	ns := metav1.NamespaceDefault
    	testServer, endpointsHandler := makeTestServer(t, ns)
    	defer testServer.Close()
    
    	tCtx := ktesting.Init(t)
    	endpoints := newController(tCtx, testServer.URL, 0*time.Second)
    	endpoints.endpointsStore.Add(&v1.Endpoints{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            "foo",
    			Namespace:       ns,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			klog.V(4).InfoS("Completed init container for pod", "containerName", container.Name, "pod", klog.KObj(pod))
    		}
    	} else {
    		// Step 6: start init containers.
    		for _, idx := range podContainerChanges.InitContainersToStart {
    			container := &pod.Spec.InitContainers[idx]
    			// Start the next init container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_test.cc

      }
    }
    
    TEST_F(CApiAttributesTest, EmptyList) {
      auto desc = init("list(int)");
      TF_SetAttrIntList(desc, "v", nullptr, 0);
      auto oper = TF_FinishOperation(desc, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_TF_META("v", 0, TF_ATTR_INT, -1);
    }
    
    TEST_F(CApiAttributesTest, Names) {
      auto desc = init("string");
      TF_SetAttrString(desc, "v", "bunny", 5);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/strategy_test.go

    						Type: api.AppArmorProfileTypeUnconfined,
    					},
    				},
    				InitContainers: []api.Container{{Name: "init"}},
    				Containers:     []api.Container{{Name: "ctr"}},
    			},
    		},
    		validation: func(t *testing.T, pod *api.Pod) {
    			assert.Equal(t, map[string]string{
    				api.DeprecatedAppArmorAnnotationKeyPrefix + "init": api.DeprecatedAppArmorAnnotationValueUnconfined,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top