Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,393 for wereld (1.65 sec)

  1. mockwebserver/README.md

      Chat chat = new Chat(baseUrl);
    
      chat.loadMore();
      assertEquals("hello, world!", chat.messages());
    
      chat.loadMore();
      chat.loadMore();
      assertEquals(""
          + "hello, world!\n"
          + "sup, bra?\n"
          + "yo dog", chat.messages());
    
      // Optional: confirm that your app made the HTTP requests you were expecting.
      RecordedRequest request1 = server.takeRequest();
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingResult.java

         *         {@link ProjectBuildingException}.
         */
        MavenProject getProject();
    
        /**
         * Gets the problems that were encountered during the project building.
         *
         * @return The problems that were encountered during the project building, can be empty but never {@code null}.
         */
        List<ModelProblem> getProblems();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

         *         {@link ProjectBuilderException}.
         */
        @Nonnull
        Optional<Project> getProject();
    
        /**
         * Gets the problems that were encountered during the project building.
         *
         * @return the problems that were encountered during the project building, can be empty but never {@code null}
         */
        @Nonnull
        Collection<BuilderProblem> getProblems();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/html/template/doc.go

    exempted from escaping.
    
    The template
    
    	Hello, {{.}}!
    
    can be invoked with
    
    	tmpl.Execute(out, template.HTML(`<b>World</b>`))
    
    to produce
    
    	Hello, <b>World</b>!
    
    instead of the
    
    	Hello, &lt;b&gt;World&lt;b&gt;!
    
    that would have been produced if {{.}} was a regular string.
    
    # Security Model
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_vendor_goversion.txt

    
    # With a vendor/modules.txt lacking language versions, the world is topsy-turvy,
    # because we have to guess a uniform version for everything.
    #
    # We always guess Go 1.16, because that was the last version for which
    # 'go mod vendor' failed to record dependency versions, and it has most of
    # the language features added since modules were introduced in Go 1.11.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 21:29:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

                dependencies {
                    runtime "org.test:first:latest.integration"
                }
    
                task resolve {
                    dependsOn configurations.runtime
                    ext.message = "hello world"
                    ext.dependencies = []
                    ext.assertions = []
                    doLast {
                        def resolved = configurations.runtime.files
                        println "Looking for " + message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. src/encoding/xml/read_test.go

    			`<table xmlns="http://www.w3schools.com/furniture">world</table>` +
    			`</Tables>`,
    		tab: Tables{"hello", "world"},
    	},
    	{
    		xml: `<Tables>` +
    			`<table xmlns="http://www.w3schools.com/furniture">world</table>` +
    			`<table xmlns="http://www.w3.org/TR/html4/">hello</table>` +
    			`</Tables>`,
    		tab: Tables{"hello", "world"},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  8. src/runtime/metrics/description.go

    		Cumulative:  true,
    	},
    	{
    		Name:        "/sched/pauses/stopping/gc:seconds",
    		Description: "Distribution of individual GC-related stop-the-world stopping latencies. This is the time it takes from deciding to stop the world until all Ps are stopped. This is a subset of the total GC-related stop-the-world time (/sched/pauses/total/gc:seconds). During this time, some threads may be executing. Bucket counts increase monotonically.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    	// Wake all blocked assists. These will run when we
    	// start the world again.
    	gcWakeAllAssists()
    
    	// Likewise, release the transition lock. Blocked
    	// workers and assists will run when we start the
    	// world again.
    	semrelease(&work.markDoneSema)
    
    	// In STW mode, re-enable user goroutines. These will be
    	// queued to run after we start the world.
    	schedEnableUser(true)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    		return false
    	}
    
    	// Allow unmount only when ASW device paths were corrected from node.status to prevent
    	// calling unmount with a wrong devicePath.
    	if len(rc.volumesNeedUpdateFromNodeStatus) != 0 {
    		return false
    	}
    	return true
    }
    
    // reconstructVolumes tries to reconstruct the actual state of world by scanning all pods' volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top