Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for earliest (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

            }
        }
    
        implementation "org:foo:1.0"
    }
    ----
    ======
    =====
    
    [[unsupported_ge_plugin_3.13]]
    ==== Earliest supported Develocity plugin version is 3.13.1
    
    Starting in Gradle 9.0, the earliest supported Develocity plugin version is 3.13.1.
    The plugin versions from 3.0 up to 3.13 will be ignored when applied.
    
    Upgrade to version 3.13.1 or later of the Develocity plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    			}
    
    		case *Array:
    			// Prevent crash if the array referred to is not yet set up. Was go.dev/issue/18643.
    			// This is a stop-gap solution. Should use Checker.objPath to report entire
    			// path starting with earliest declaration in the source. TODO(gri) fix this.
    			if utyp.elem == nil {
    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    			n := check.indexedElts(e.Elts, utyp.elem, utyp.len)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/net/http/request.go

    	} else {
    		r.Header.Set("Cookie", s)
    	}
    }
    
    // Referer returns the referring URL, if sent in the request.
    //
    // Referer is misspelled as in the request itself, a mistake from the
    // earliest days of HTTP.  This value can also be fetched from the
    // [Header] map as Header["Referer"]; the benefit of making it available
    // as a method is that the compiler can diagnose programs that use the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    			}
    
    		case *Array:
    			// Prevent crash if the array referred to is not yet set up. Was go.dev/issue/18643.
    			// This is a stop-gap solution. Should use Checker.objPath to report entire
    			// path starting with earliest declaration in the source. TODO(gri) fix this.
    			if utyp.elem == nil {
    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    			n := check.indexedElts(e.ElemList, utyp.elem, utyp.len)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    Note that if a module matches a pattern with vcslist "off", it may still be
    downloaded if the origin server uses the "mod" scheme, which instructs the
    go command to download the module using the GOPROXY protocol.
    The earliest matching pattern in the list applies, even if later patterns
    might also match.
    
    For example, consider:
    
    	GOVCS=github.com:git,evil.com:off,*:git|hg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // this will be the case.
      // This means that when we have put all out sections together some resource
      // inputs will have multiple TPUReplicateInput nodes, so we will need a final
      // pass to merge these together into the earliest copy.
      llvm::SetVector<int64_t> forward_variable_inputs;
    
      // Validate that the only resource inputs that are read by ops in
      // forward_pass_ops are dataset and variable ops.
      int64_t resource_count = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    									Endpoint:   "unix:///tmp/testprovider.sock",
    									CacheSize:  pointer.Int32(10),
    								},
    							},
    						},
    					},
    				},
    			},
    			expectedError: "resource \"secrets\" is masked by earlier rule \"*.\"",
    		},
    		{
    			desc: "*. masked by *. group",
    			config: &apiserver.EncryptionConfiguration{
    				Resources: []apiserver.ResourceConfiguration{
    					{
    						Resources: []string{
    							"*.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * Several <<#rel5.0:library_upgrades, library versions used by Gradle>> have been upgraded.
    
    [[changes_5.0]]
    == Upgrading from 4.10 and earlier
    
    If you are not already on version 4.10, skip down to the section that applies to your current Gradle version and work your way up until you reach here. Then, apply these changes when moving from Gradle 4.10 to 5.0.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			errList := ValidateAuthorizationConfiguration(nil, &test.configuration, test.knownTypes, test.repeatableTypes)
    			if len(errList) != len(test.expectedErrList) {
    				t.Errorf("expected %d errs, got %d, errors %v", len(test.expectedErrList), len(errList), errList)
    			}
    			if len(errList) == len(test.expectedErrList) {
    				for i, expected := range test.expectedErrList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSortedMap.java

       * IllegalArgumentException} if passed a {@code fromKey} less than an earlier {@code fromKey}.
       * However, this method doesn't throw an exception in that situation, but instead keeps the
       * original {@code fromKey}. Similarly, this method keeps the original {@code toKey}, instead of
       * throwing an exception, if passed a {@code toKey} greater than an earlier {@code toKey}.
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top