Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 433 for newUser (1.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnLibraryTooNewFailureDescriberIntegrationTest.groovy

         Required by:
             project :consumer
          > Dependency resolution is looking for a library compatible with JVM runtime version $currentJava, but 'project :producer' is only compatible with JVM runtime version $tooHighJava or newer.""")
            failure.assertHasErrorOutput("Caused by: " + VariantSelectionException.class.getName())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (1)
  2. pkg/kubelet/container/cache_test.go

    		cacheTime time.Time
    		modified  time.Time
    		expected  bool
    	}{
    		{
    			// Both the global cache timestamp and the modified time are newer
    			// than the timestamp.
    			cacheTime: timestamp.Add(time.Second),
    			modified:  timestamp,
    			expected:  true,
    		},
    		{
    			// Global cache timestamp is newer, but the pod entry modified
    			// time is older than the given timestamp. This means that the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 24 20:23:12 UTC 2020
    - 6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_goline.txt

    -- a101/go.mod --
    // this module is technically invalid, since the dep example.com/b has a newer go line than this module,
    // but we should still be able to handle it.
    module example.com/a
    go 1.22
    
    require example.com/b v1.0.1
    
    -- a101/a.go --
    package a
    
    -- a102/go.mod --
    // this module is technically invalid, since the dep example.com/b has a newer go line than this module,
    // but we should still be able to handle it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/toonew.go

    	// nested fields and methods than are shown here.) Clients
    	// that use the compatibility shim T will compile with any
    	// version of go, whether older or newer than go1.22, but only
    	// the newer version will use the std.Real implementation.
    	//
    	// Now consider a reference to method M in new(T).F.M() in a
    	// module that requires a minimum of go1.21. The analysis may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_download_issue51114.txt

    [!net:github.com] skip
    [!git] skip
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    env GOPROXY=direct
    
    ! go mod download
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 749 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/old_tidy_toolchain.txt

    go list
    
    go mod edit -go=1.20
    go list
    
    # New go line, no toolchain line, using same toolchain.
    env TESTGO_VERSION=1.21
    go mod edit -go=1.21
    go list
    
    # New go line, no toolchain line, using newer Go version.
    # (Until we need to update the go line, no toolchain addition.)
    env TESTGO_VERSION=1.21.0
    go list
    
    -- go.mod --
    module m
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 615 bytes
    - Viewed (0)
  7. pkg/registry/core/persistentvolume/strategy.go

    // and should not be modified by the user.
    func (persistentvolumeStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"v1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    	}
    
    	return fields
    }
    
    // ResetBeforeCreate clears the Status field which is not allowed to be set by end users on creation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 03:58:36 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho_update_uuid.go

    // load command within a Go go binary generated on Darwin using
    // external linking. Why is it necessary to update the UUID load
    // command? See issue #64947 for more detail, but the short answer is
    // that newer versions of the Macos toolchain (the newer linker in
    // particular) appear to compute the UUID based not just on the
    // content of the object files being linked but also on things like
    // the timestamps/paths of the objects; this makes it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/README.md

    These get publish to [Grafana](https://grafana.com/orgs/istio/dashboards) during release, and are bundled into our
    [Grafana sample](../../../samples/addons/grafana.yaml).
    
    ## Jsonnet
    
    Newer dashboards are generated with [Jsonnet](https://jsonnet.org/) with the [Grafonnet](https://grafana.github.io/grafonnet/index.html).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  10. pkg/monitoring/derived_gauge.go

    	d.mu.Lock()
    	defer d.mu.Unlock()
    	lv := slices.Map(labelValues, func(e LabelValue) attribute.KeyValue {
    		return e.keyValue
    	})
    	as := attribute.NewSet(lv...)
    	d.attrs[as] = valueFn
    	return d
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top