Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,119 for nothings (1.13 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/ObjectExtensionInstantiationIntegrationTest.groovy

            buildFile """
                class Things {
                    class Thing { }
                }
    
                extensions.create("thing", Things.Thing, "a")
            """
    
            expect:
            fails()
            failure.assertHasCause("Could not create an instance of type Things\$Thing.")
            failure.assertHasCause("Class Things.Thing is a non-static inner class.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 16.9K bytes
    - Viewed (0)
  2. android/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)
  3. pkg/controller/job/success_policy_test.go

    		},
    		"successPolicy is null": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 0}},
    		},
    		"any rules are nothing": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 0}},
    			successPolicy:          &batch.SuccessPolicy{Rules: []batch.SuccessPolicyRule{}},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/infer.go

    	// was given, unification produced the type list [int, []C, *A]. We eliminate the
    	// remaining type parameters by substituting the type parameters in this type list
    	// until nothing changes anymore.
    	inferred = u.inferred(tparams)
    	if debug {
    		for i, targ := range targs {
    			assert(targ == nil || inferred[i] == targ)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

     * avoided. For example, a top-level script containing a `plugins` block but no body
     * can be compiled down to a specialized program that instantiates the compiled
     * `plugins` block class directly - without reflection - and does nothing else. The
     * same strategy can be used for a **script plugin** (a non top-level script) with a
     * body but no `buildscript` block since the classpath is completely determined at
     * the time the specialized program is emitted.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  6. pkg/kube/krt/collection.go

    				if h.log.DebugEnabled() {
    					h.log.WithLabels("res", key, "type", e.Event).Debugf("handled")
    				}
    				events = append(events, e)
    			}
    		}
    	}
    	h.mu.Unlock()
    
    	// Short circuit if we have nothing to do
    	if len(events) == 0 {
    		return
    	}
    	handlers := h.eventHandlers.Get()
    
    	if h.log.DebugEnabled() {
    		h.log.WithLabels("events", len(events), "handlers", len(handlers)).Debugf("calling handlers")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		}
    		IncrementEnvoyFilterMetric(lp.Key(), Listener, true)
    		if lp.Operation == networking.EnvoyFilter_Patch_REMOVE {
    			lis.Name = ""
    			*listenersRemoved = true
    			// terminate the function here as we have nothing more do to for this listener
    			return
    		} else if lp.Operation == networking.EnvoyFilter_Patch_MERGE {
    			merge.Merge(lis, lp.Value)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/sccp.go

    func (t *worklist) propagate(block *Block) {
    	switch block.Kind {
    	case BlockExit, BlockRet, BlockRetJmp, BlockInvalid:
    		// control flow ends, do nothing then
    		break
    	case BlockDefer:
    		// we know nothing about control flow, add all branch destinations
    		t.edges = append(t.edges, block.Succs...)
    	case BlockFirst:
    		fallthrough // always takes the first branch
    	case BlockPlain:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. android/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)
  10. pkg/scheduler/framework/plugins/interpodaffinity/plugin.go

    // If successful, NamespaceSelector is set to nil.
    // The assumption is that the term is for an incoming pod, in which case
    // namespaceSelector is either unrolled into Namespaces (and so the selector
    // is set to Nothing()) or is Empty(), which means match everything. Therefore,
    // there when matching against this term, there is no need to lookup the existing
    // pod's namespace labels to match them against term's namespaceSelector explicitly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 03:08:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top