Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,356 for wereld (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/runtime/metrics/doc.go

    		latencies. This is the time from deciding to stop the world
    		until the world is started again. Some of this time is spent
    		getting all threads to stop (this is measured directly in
    		/sched/pauses/stopping/gc:seconds), during which some threads
    		may still be running. Bucket counts increase monotonically.
    
    	/sched/pauses/total/other:seconds
    		Distribution of individual non-GC-related stop-the-world
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            // Unnecessary cast will trigger a warning
            String s = (String)"Hello World";
        }
    """
            }
    
            void addError() {
                errorIndex += 1
                sourceFile << """\
    public void error${errorIndex}() {
        // Missing semicolon will trigger an error
        String s = "Hello, World!"
    }
    """
            }
    
            TestFile save() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/EquivalenceTest.java

            .addEqualityGroup(Equivalence.identity().equivalentTo("1"))
            .testEquals();
      }
    
      /*
       * We use large numbers to avoid the integer cache. Normally, we'd accomplish that merely by using
       * `new Integer` (as we do) instead of `Integer.valueOf`. However, under J2KT, `new Integer`
       * gets translated back to `Integer.valueOf` because that is the only thing J2KT can support. And
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/internal/goexperiment/flags.go

    	HeapMinimum512KiB bool
    
    	// CoverageRedesign enables the new compiler-based code coverage
    	// tooling.
    	CoverageRedesign bool
    
    	// Arenas causes the "arena" standard library package to be visible
    	// to the outside world.
    	Arenas bool
    
    	// CgoCheck2 enables an expensive cgo rule checker.
    	// When this experiment is enabled, cgo rule checks occur regardless
    	// of the GODEBUG=cgocheck setting provided at runtime.
    	CgoCheck2 bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top