Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 9,026 for gives (0.08 sec)

  1. operator/pkg/helmreconciler/common.go

    	componentNameToListMap map[name.ComponentName][]name.ComponentName
    )
    
    var (
    	// ComponentDependencies is a tree of component dependencies. The semantics are ComponentDependencies[cname] gives
    	// the subtree of components that must wait for cname to be installed before starting installation themselves.
    	ComponentDependencies = componentNameToListMap{
    		name.PilotComponentName: {
    			name.CNIComponentName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. pkg/kube/client_factory.go

    }
    
    type PartialFactory interface {
    	rESTClientGetter
    
    	// DynamicClient returns a dynamic client ready for use
    	DynamicClient() (dynamic.Interface, error)
    
    	// KubernetesClientSet gives you back an external clientset
    	KubernetesClientSet() (*kubernetes.Clientset, error)
    
    	// Returns a RESTClient for accessing Kubernetes resources or an error.
    	RESTClient() (*rest.RESTClient, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 21:30:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/runtime/arena_test.go

    		if parallel {
    			t.Parallel()
    		}
    
    		// Allocate and write data, enough to exhaust the arena.
    		//
    		// This is an underestimate, likely leaving some space in the arena. That's a good thing,
    		// because it gives us coverage of boundary cases.
    		n := int(UserArenaChunkBytes / unsafe.Sizeof(*value))
    		if n == 0 {
    			n = 1
    		}
    
    		// Create a new arena and do a bunch of operations on it.
    		arena := NewUserArena()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/runtime/vlop_arm_test.go

    	//   ldr     fp, [pc, #32]   ; (address of 128.0)
    	//   vldr    d0, [fp]
    	//   ldr     fp, [pc, #28]   ; (1024)
    	//   add     fp, fp, r0
    	//   vstr    d0, [fp]
    	// The software floating-point emulator gives up on the add.
    	// This causes the store to not work.
    	// See issue 15440.
    	a[128] = 128.0
    }
    func TestArmFloatBigOffsetWrite(t *testing.T) {
    	var a [129]float64
    	for i := 0; i < 128; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningTasksIntegrationSpec.groovy

            run "signCustomFiles"
    
            then:
            skipped(":signCustomFiles")
        }
    
        def "trying to sign a task that isn't an archive task gives nice enough message"() {
            given:
            buildFile << """
                signing {
                    ${signingConfiguration()}
                    sign clean
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat.txt

    go list -m all
    cmp stdout m_all.txt
    
    go mod edit -go=1.16
    go list -m all
    cmp stdout m_all.txt
    
    
    # If we explicitly drop compatibility with 1.16, we retain fewer checksums,
    # which gives a cleaner go.sum file but causes 1.16 to fail in readonly mode.
    
    cp go.mod.orig go.mod
    go mod tidy -compat=1.17
    cmp go.mod go.mod.orig
    
    # Make sure that -diff behaves the same as tidy.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    === Listing projects
    Running the `projects` task gives you a list of the subprojects of the selected project, displayed in a hierarchy:
    
    ----
    $ gradle projects
    ----
    
    You also get a project report within https://scans.gradle.com/[Build Scans].
    
    [[sec:listing_tasks]]
    === Listing tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. src/runtime/security_test.go

    	t.Helper()
    	// We escalate privileges here even if we are root, because for some reason on some builders
    	// (at least freebsd-amd64-13_0) the default PATH doesn't include /usr/sbin, which is where
    	// chown lives, but using 'su root -c' gives us the correct PATH.
    
    	// buildTestProg uses os.MkdirTemp which creates directories with 0700, which prevents
    	// setuid binaries from executing because of the missing g+rx, so we need to set the parent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 18:10:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    cp stdout out-117.txt
    
    go mod edit -go=1.16
    go list -deps -test -f $MODFMT all
    cmp stdout out-117.txt
    
    
    # If we explicitly drop compatibility with 1.16, we retain fewer checksums,
    # which gives a cleaner go.sum file but causes 1.16 to fail in readonly mode.
    
    cp go.mod.orig go.mod
    go mod tidy -compat=1.17
    cmp go.mod go.mod.orig
    
    # Make sure that -diff behaves the same as tidy.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

                // - an unexpected exception thrown in user code that is called from other user code, where the called code should be blamed
                // So, for now, just blame the first user code that can be identified. This gives the user some clues for where to start
                startPos = 0;
                endPos = stack.size();
            } else {
                // When analysing a problem stack trace, consider only the deepest user code in the stack.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top