Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,119 for nothings (0.18 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    func HandleError(err error) {
    	// this is sometimes called with a nil error.  We probably shouldn't fail and should do nothing instead
    	if err == nil {
    		return
    	}
    
    	handleError(context.Background(), err, "Unhandled Error")
    }
    
    // HandlerErrorWithContext is a method to invoke when a non-user facing piece of code cannot
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/runtime/pinner.go

    // are going to be accessed from C code.
    //
    // The argument must be a pointer of any type or an [unsafe.Pointer].
    // It's safe to call Pin on non-Go pointers, in which case Pin will do nothing.
    func (p *Pinner) Pin(pointer any) {
    	if p.pinner == nil {
    		// Check the pinner cache first.
    		mp := acquirem()
    		if pp := mp.p.ptr(); pp != nil {
    			p.pinner = pp.pinnerCache
    			pp.pinnerCache = nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. test/live_regabi.go

    func printint(int)
    
    func f1() {
    	var x *int       // ERROR "stack object x \*int$"
    	printpointer(&x) // ERROR "live at call to printpointer: x$"
    	printpointer(&x)
    }
    
    func f2(b bool) {
    	if b {
    		printint(0) // nothing live here
    		return
    	}
    	var x *int       // ERROR "stack object x \*int$"
    	printpointer(&x) // ERROR "live at call to printpointer: x$"
    	printpointer(&x)
    }
    
    func f3(b1, b2 bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. pkg/controller/util/selectors/bimultimap_test.go

    		},
    		want: []expectation{
    			forwardSelect(key("hpa-1", "namespace-1")), // selects nothing
    			forwardSelect(key("hpa-1", "namespace-2"), key("pod-1", "namespace-2")),
    			reverseSelect(key("pod-1", "namespace-1")), // selects nothing
    			reverseSelect(key("pod-1", "namespace-2"), key("hpa-1", "namespace-2")),
    		},
    		testAllPermutations: true,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 01:56:36 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool-rebalance.go

    							NoDecryption: true,
    							NoLock:       true,
    							NoAuditLog:   true,
    						})
    					if isErrObjectNotFound(err) || isErrVersionNotFound(err) {
    						// object deleted by the application, nothing to do here we move on.
    						ignore = true
    						stopFn(0, nil)
    						break
    					}
    					if err != nil {
    						failure = true
    						rebalanceLogIf(ctx, err)
    						stopFn(0, err)
    						continue
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/CacheEvictionTest.java

        CacheTesting.checkValidState(cache);
      }
    
      /**
       * Tests that when a single entry exceeds the segment's max weight, the new entry is immediately
       * evicted and nothing else.
       */
      public void testEviction_maxWeight_entryTooBig() {
        CountingRemovalListener<Integer, Integer> removalListener = countingRemovalListener();
        IdentityLoader<Integer> loader = identityLoader();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 14.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

        checkSha1("b617318655057264e28bc0b6fb378c8ef146be00", key, data);
      }
    
      public void testRfc2202_hmacSha1_case2() {
        byte[] key = "Jefe".getBytes(UTF_8);
        String data = "what do ya want for nothing?";
    
        checkSha1("effcdf6ae5eb2fa2d27416d5f184df9c259a7c79", key, data);
      }
    
      public void testRfc2202_hmacSha1_case3() {
        byte[] key = fillByteArray(20, 0xaa);
        byte[] data = fillByteArray(50, 0xdd);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

     */
    @Suppress("nothing_to_inline")
    inline fun Project.defaultTasks(vararg tasks: Task) {
        defaultTasks(*tasks.map { it.name }.toTypedArray())
    }
    
    
    /**
     * Applies the plugin of the given type [T]. Does nothing if the plugin has already been applied.
     *
     * The given class should implement the [Plugin] interface, and be parameterized for a
     * compatible type of `this`.
     *
     * @param T the plugin type.
     * @see [PluginAware.apply]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. tools/docker-builder/main.go

    	defer span.End()
    	if len(c) == 0 {
    		log.Infof("nothing to make")
    		return nil
    	}
    	if SkipMake == "true" {
    		return nil
    	}
    	shortArgs := []string{}
    	// Shorten output to avoid a ton of long redundant paths
    	for _, cs := range c {
    		shortArgs = append(shortArgs, filepath.Base(cs))
    	}
    	if len(c) == 0 {
    		log.Infof("Nothing to make")
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. pkg/controller/util/node/controller_utils.go

    		if err := kubeClient.CoreV1().Pods(pod.Namespace).Delete(ctx, pod.Name, metav1.DeleteOptions{}); err != nil {
    			if apierrors.IsNotFound(err) {
    				// NotFound error means that pod was already deleted.
    				// There is nothing left to do with this pod.
    				continue
    			}
    			return false, err
    		}
    		remaining = true
    	}
    
    	if len(updateErrList) > 0 {
    		return false, utilerrors.NewAggregate(updateErrList)
    	}
    	return remaining, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top