Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,314 for explode (0.29 sec)

  1. pkg/controller/util/selectors/bimultimap_test.go

    	m := NewBiMultimap()
    	m.PutSelector(key("hpa-1"), useOnceSelector)
    	m.Put(key("pod-1"), labels("a", "1"))
    
    	// Selector is used only during full scan. Second Put will use
    	// cached association or explode.
    	m.Put(key("pod-2"), labels("a", "1"))
    
    	err := forwardSelect(key("hpa-1"), key("pod-1"), key("pod-2"))(m)
    	if err != nil {
    		t.Errorf(err.Error())
    	}
    }
    
    func TestUseOnceSelector(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 01:56:36 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/controllermanager.go

    func NewControllerDescriptors() map[string]*ControllerDescriptor {
    	controllers := map[string]*ControllerDescriptor{}
    	aliases := sets.NewString()
    
    	// All the controllers must fulfil common constraints, or else we will explode.
    	register := func(controllerDesc *ControllerDescriptor) {
    		if controllerDesc == nil {
    			panic("received nil controller for a registration")
    		}
    		name := controllerDesc.Name()
    		if len(name) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/Exclude.java

    import java.util.Set;
    
    /**
     * Represents the Ivy descriptor representation of an exclude.
     * In an Ivy descriptor, and exclude can apply to a number of configurations.
     */
    public interface Exclude extends ExcludeMetadata {
        /**
         * The configurations that this exclude will apply to.
         * NOTE: only supported for exclude rules sourced from an Ivy module descriptor (ivy.xml).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    //
    //  1. The selected version of the module providing each package marked with
    //     either pkgInAll or pkgIsRoot is included as a root.
    //     Note that certain root patterns (such as '...') may explode the root set
    //     to contain every module that provides any package imported (or merely
    //     required) by any other module.
    //  2. Each root appears only once, at the selected version of its path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.png

    exploded-war-child-copy-spec-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 126.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_cmd_v1.0.0-exclude.txt

    example.com/cmd contains main packages.
    
    -- .info --
    {"Version":"v1.0.0-exclude"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    
    exclude rsc.io/quote v1.5.2
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    
    exclude rsc.io/quote v1.5.2
    -- a/a.go --
    package main
    
    func main() {}
    -- b/b.go --
    package main
    
    func main() {}
    -- err/err.go --
    package err
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 12:45:59 UTC 2020
    - 365 bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      fun postBodyRetransmittedAfterAuthorizationFail_HTTP_2() {
        platform.assumeHttp2Support()
        enableProtocol(Protocol.HTTP_2)
        postBodyRetransmittedAfterAuthorizationFail("abc")
      }
    
      /** Don't explode when resending an empty post. https://github.com/square/okhttp/issues/1131  */
      @Test
      fun postEmptyBodyRetransmittedAfterAuthorizationFail() {
        postBodyRetransmittedAfterAuthorizationFail("")
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.graffle

    exploded-war-child-copy-spec-example.graffle ApplicationVersionco.omnigroup.OmniGraffle7.MacAppStore186.3ColorProfilesdataAA/gAAAAUbWVhcwAABAwAAA+wEBAQcBDQETARkBHwElA+gIDAgwCFAIdAiYCLwI4A+wD+QQGBBMEIAQtBDsESARVB+BIwEmgSoBLYExATTBOEE+BQ0FHAUrBToFSQVYBWcF/B9IH5Qf4CAsIHwgyCEYI+EL+QwSDCoMQwxcDHUMjgynD/DpsOtg7SDu4PCQ8lD0EP/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExExEU8R+UUBhQnFEkUahSLFK0Uzh/cYGxhAGGUYihivGNUY+hkgGUUZaxmRGbcZ3RoEG+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHC/HL/4wNTBsMKQw2zESMUoxgj/E0KzRlNJ402DUTN...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

      }
    
      @Test
      fun postBodyRetransmittedAfterAuthorizationFail_HTTP_2() {
        enableProtocol(Protocol.HTTP_2)
        postBodyRetransmittedAfterAuthorizationFail("abc")
      }
    
      /** Don't explode when resending an empty post. https://github.com/square/okhttp/issues/1131  */
      @Test
      fun postEmptyBodyRetransmittedAfterAuthorizationFail() {
        postBodyRetransmittedAfterAuthorizationFail("")
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

                lib {
                    file("exclude").text = "exclude"
                    file("include").text = "include"
                }
            }
            and:
            buildFile << """
            task extract(type: Copy) {
                from $unarchive ("$archiveFile")
    
                exclude { details ->
                    details.isDirectory() ||
                    details.file.text.contains('exclude')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top