Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for ensure (0.47 sec)

  1. samples/bookinfo/src/reviews/reviews-application/src/main/webapp/index.html

    		class. This adds a REST endpoint which you can access at <a
    			href="rest">/rest</a>
    	<p>
    		Inside the wlpcfg project there is the
    		<code>it.rest.LibertyRestEndpointTest</code>
    		that will test the REST endpoint to ensure it is working.
    	</p>
    	<p>
    		For the complete feature documentation, see the <a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 196.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    	testKubelet.kubelet.kubeClient = nil // ensure only the heartbeat client is used
    
    	cases := []struct {
    		name         string
    		initialNode  *v1.Node
    		existingNode *v1.Node
    		needsUpdate  bool
    		finalLabels  map[string]string
    	}{
    		{
    			name: "make sure default labels exist",
    			initialNode: &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	if cg != nil {
    		return ds, nil
    	}
    
    	// Track each driverConn's open statements, so we can close them
    	// before closing the conn.
    	//
    	// Wrap all driver.Stmt is *driverStmt to ensure they are only closed once.
    	if dc.openStmt == nil {
    		dc.openStmt = make(map[*driverStmt]bool)
    	}
    	dc.openStmt[ds] = true
    	return ds, nil
    }
    
    // the dc.db's Mutex is held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

    #   KUBE_ROOT
    #   <Various vars set in config file>
    function kube-up() {
      kube::util::ensure-temp-dir
      detect-project
    
      load-or-gen-kube-basicauth
      load-or-gen-kube-bearertoken
    
      # Make sure we have the tar files staged on Google Storage
      find-release-tars
      upload-tars
    
      # ensure that environmental variables specifying number of migs to create
      set_num_migs
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier_test.go

    			Conditions: discovery.EndpointConditions{Ready: ptr.To(false)},
    			NodeName:   ptr.To("node3"),
    		}},
    	}
    
    	fp.OnEndpointSliceAdd(endpointSlice)
    	fp.syncProxyRules()
    
    	// Ensure that Proxier updates ipvs appropriately after EndpointSlice update
    	assert.NotNil(t, fp.ipsetList["KUBE-LOOP-BACK"])
    	activeEntries1 := fp.ipsetList["KUBE-LOOP-BACK"].activeEntries
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def outputDir2 = immutableOutputDir("lib2-1.0.jar", "lib2-1.0.jar.txt").assertExists()
            journal.assertExists()
    
            when:
            run '--stop' // ensure daemon does not cache file access times in memory
            def beforeCleanup = MILLISECONDS.toSeconds(System.currentTimeMillis())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	//
    	// allgptr is updated before allglen. Readers should read allglen
    	// before allgptr to ensure that allglen is always <= len(allgptr). New
    	// Gs appended during the race can be missed. For a consistent view of
    	// all Gs, allglock must be held.
    	//
    	// allgptr copies should always be stored as a concrete type or
    	// unsafe.Pointer, not uintptr, to ensure that GC can still reach it
    	// even if it points to a stale array.
    	allglen uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    			conn.ci.(*fakeConn).stickyBad = ec.badReset
    
    			db.putConn(conn, err, true)
    
    			<-afterPutConn
    		})
    	}
    }
    
    // TestIssue20575 ensures the Rows from query does not block
    // closing a transaction. Ensure Rows is closed while closing a transaction.
    func TestIssue20575(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	tx, err := db.Begin()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/eviction_manager_test.go

    			t.Errorf("Admit pod: %v, expected: %v, actual: %v", pod, expected[i], result.Admit)
    		}
    	}
    
    	// move the clock past transition period to ensure that we stop reporting pressure
    	fakeClock.Step(5 * time.Minute)
    	summaryProvider.result = summaryStatsMaker("2Gi", podStats)
    	podKiller.pod = nil // reset state
    	_, err = manager.synchronize(diskInfoProvider, activePodsFunc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    				}
    				if err := pcm.EnsureExists(pod); err != nil {
    					kl.recorder.Eventf(pod, v1.EventTypeWarning, events.FailedToCreatePodContainer, "unable to ensure pod container exists: %v", err)
    					return false, fmt.Errorf("failed to ensure that the pod: %v cgroups exist and are correctly applied: %v", pod.UID, err)
    				}
    			}
    		}
    	}
    
    	// Create Mirror Pod for Static Pod if it doesn't already exist
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top