Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,119 for nothings (0.42 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

                            doLast {
                                def things = $.things
                                println "thingA = " + things.thingA.name
                                println "thingB = " + things.thingB.name
                                println "thingC = " + things.thingC.name
                            }
                        }
                    }
                }
            '''
    
            when:
            run 'show'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val CHAR_SEQUENCE: ClassId = ClassId.topLevel(StandardNames.FqNames.charSequence.toSafe())
        public val ANY: ClassId = ClassId.topLevel(StandardNames.FqNames.any.toSafe())
        public val NOTHING: ClassId = ClassId.topLevel(StandardNames.FqNames.nothing.toSafe())
        public val PRIMITIVES: Set<ClassId> = setOf(INT, LONG, SHORT, BYTE, FLOAT, DOUBLE, CHAR, BOOLEAN)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pkg/controller/certificates/signer/signer_test.go

    		},
    		{
    			name:            "should do nothing if an unrecognised signerName is used",
    			signerName:      "kubernetes.io/not-recognised",
    			constructionErr: true,
    			approved:        true,
    			verify: func(t *testing.T, as []testclient.Action) {
    				if len(as) != 0 {
    					t.Errorf("expected no action to be taken")
    				}
    			},
    		},
    		{
    			name:       "should do nothing if not approved",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 15K bytes
    - Viewed (0)
  4. architecture/ambient/ztunnel.md

    A secondary goal was to enable a smoother on-ramp from "Zero" to "Getting some value".
    Historically, Istio had to really be consumed all-or-nothing for things to work as expected.
    In particular, an easy answer to "I just want to have mTLS everywhere, then I can think about adopting the rest of service mesh" was desired.
    
    ## Goals
    
    Ztunnel should:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    		return
    	}
    
    	// walk children
    	// (the order of the cases matches the order of the corresponding node types in go/ast)
    	switch n := n.(type) {
    	case nil:
    		// nothing to do
    
    	// Comments and fields
    	case *ast.Comment:
    		// nothing to do
    
    	case *ast.CommentGroup:
    		if n != nil {
    			a.applyList(n, "List")
    		}
    
    	case *ast.Field:
    		a.apply(n, "Doc", nil, n.Doc)
    		a.applyList(n, "Names")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         *
         * @param listener The listener to add. Does nothing if this listener has already been added.
         * @return The added listener.
         */
        ProjectEvaluationListener addProjectEvaluationListener(ProjectEvaluationListener listener);
    
        /**
         * Removes the given listener from this build.
         *
         * @param listener The listener to remove. Does nothing if this listener has not been added.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

        )
        def "parses a file with a single bundle and nothing else"() {
            when:
            parse('one-bundle')
    
            then:
            InvalidUserDataException ex = thrown()
            verify(ex.message, undefinedAliasRef {
                inCatalog('libs')
                bundle('guava')
                aliasRef('hello')
            })
        }
    
        def "parses a file with a single version and nothing else"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

        )
      }
    
      /** Test the introspection method [TaskQueue.scheduledTasks]. */
      @Test fun scheduledTasks() {
        redQueue.execute("task one", 100.µs) {
          // Do nothing.
        }
    
        redQueue.execute("task two", 200.µs) {
          // Do nothing.
        }
    
        assertThat(redQueue.scheduledTasks.toString()).isEqualTo("[task one, task two]")
    
        assertThat(testLogHandler.takeAll()).containsExactly(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. pilot/pkg/xds/workload_test.go

    		ads.ExpectNoResponse()
    
    		// And if the service changes to no longer select them, we should see them *removed* (not updated)
    		createService(s, "svc1", "default", map[string]string{"app": "nothing"})
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod4")
    	})
    	t.Run("wildcard", func(t *testing.T) {
    		expect := buildExpect(t)
    		expectRemoved := buildExpectExpectRemoved(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/template.go

    	return strings.Contains(haystack, needle)
    }
    
    func excludeInboundPort(port any, excludedInboundPorts string) string {
    	portStr := strings.TrimSpace(fmt.Sprint(port))
    	if len(portStr) == 0 || portStr == "0" {
    		// Nothing to do.
    		return excludedInboundPorts
    	}
    
    	// Exclude the readiness port if not already excluded.
    	ports := splitPorts(excludedInboundPorts)
    	outPorts := make([]string, 0, len(ports))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top