Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 862 for Display (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall.go

    // Package unix contains an interface to the low-level operating system
    // primitives. OS details vary depending on the underlying system, and
    // by default, godoc will display OS-specific documentation for the current
    // system. If you want godoc to display OS documentation for another
    // system, set $GOOS and $GOARCH to the desired system. For example, if
    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/binary/BaseBinarySpecTest.groovy

            def e = thrown ModelInstantiationException
            e.message == "Direct instantiation of a BaseBinarySpec is not permitted. Use a @ComponentType rule instead."
        }
    
        def "binary has name and sensible display name"() {
            def binary = create(SampleBinary, MySampleBinary, "sampleBinary")
    
            expect:
            binary instanceof SampleBinary
            binary.name == "sampleBinary"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server_windows.go

    		klog.ErrorS(err, "Unable to get current user")
    		return err
    	}
    
    	// For Windows user.UserName contains the login name and user.Name contains
    	// the user's display name - https://pkg.go.dev/os/user#User
    	klog.InfoS("Kubelet is running as", "login name", u.Username, "dispaly name", u.Name)
    
    	if !windows.GetCurrentProcessToken().IsElevated() {
    		return errors.New("kubelet needs to run with elevated permissions!")
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 21:57:08 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeWithUnmanagedPropertiesIntegrationTest.groovy

                      tasks.create("fromPlugin") {
                        doLast {
                            println "os: $os"
                            println "name: $os.name"
                            println "display-name: $os.displayName"
                        }
                      }
                    }
                }
    
                apply type: RulePlugin
            '''
    
            then:
            succeeds "fromPlugin"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentSourcesIntegrationTest.groovy

                            doLast {
                                println "sources display name: ${sources.displayName}"
                            }
                        }
                    }
                }
            '''
    
            when:
            succeeds "printSourceDisplayName"
    
            then:
            output.contains "sources display name: Custom source 'main:someLang'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. releasenotes/notes/update-grafana-memory-compute.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    
    releaseNotes:
    - |
      **Updated** the "Control Plane Dashboard" and the "Performance Dashboard" to use the `container_memory_working_set_bytes` metric
      to display memory. This metric only counts memory that *cannot be reclaimed* by the kernel even under memory pressure,
      and therefore more relevant for tracking. It is also consistent with `kubectl top`. The reported values are lower than
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 25 16:11:21 UTC 2020
    - 474 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java-feature-variant/producer-separate-sourceset/tests/build.out

              \--- org.mongodb:bson:3.9.1
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 784 bytes
    - Viewed (0)
  8. src/os/user/user.go

    	// On Plan 9, this is the contents of /dev/user.
    	Gid string
    	// Username is the login name.
    	Username string
    	// Name is the user's real or display name.
    	// It might be blank.
    	// On POSIX systems, this is the first (or only) entry in the GECOS field
    	// list.
    	// On Windows, this is the user's display name.
    	// On Plan 9, this is the contents of /dev/user.
    	Name string
    	// HomeDir is the path to the user's home directory (if they have one).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheBuilder.java

         *
         * @param properties additional properties for the cache.
         * @return this
         */
        CacheBuilder withProperties(Map<String, ?> properties);
    
        /**
         * Specifies the display name for this cache. This display name is used in logging and error messages.
         */
        CacheBuilder withDisplayName(String displayName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingProvider.java

     */
    public interface DependencyLockingProvider {
    
        /**
         * Loads the lock state for the lock with the given ID.
         *
         * @param lockId the ID of the lock to load
         * @param lockOwner the display name of the owner of the lock
         *
         * @return the lock state corresponding to the lock with the given ID.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top