Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for cleanBar (0.25 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    	}
    	opts.Generic.Controllers = []string{"deployment", "-job", "-cronjob-controller", "podgc", "token-cleaner-controller"}
    	expectedControllers := []string{"deployment-controller", "-job-controller", "-cronjob-controller", "pod-garbage-collector-controller", "token-cleaner-controller"}
    
    	allControllers := []string{
    		"bootstrap-signer-controller",
    		"job-controller",
    		"deployment-controller",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public ClassLoaderScope getBaseClassLoaderScope() {
            return baseClassLoaderScope;
        }
    
        /**
         * This is called by the task creation DSL. Need to find a cleaner way to do this...
         */
        public Object passThrough(Object object) {
            return object;
        }
    
        @Override
        public <T> NamedDomainObjectContainer<T> container(Class<T> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  /*
                   * requireNonNull is safe because we've initialized these if
                   * !GENERATE_CANCELLATION_CAUSES.
                   *
                   * TODO(cpovirk): Maybe it would be cleaner to define a CancellationSupplier interface
                   * with two implementations, one that contains causeless Cancellation instances and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  /*
                   * requireNonNull is safe because we've initialized these if
                   * !GENERATE_CANCELLATION_CAUSES.
                   *
                   * TODO(cpovirk): Maybe it would be cleaner to define a CancellationSupplier interface
                   * with two implementations, one that contains causeless Cancellation instances and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // linux/if_pppox.h causes some declaration conflicts with other
    // includes (linux/if_pppox.h includes linux/in.h, which conflicts
    // with netinet/in.h). Given that we only need a single zero constant
    // out of that file, it's cleaner to just define it by hand here.
    const px_proto_oe = 0
    
    type SockaddrPPPoE struct {
    	SID    uint16
    	Remote []byte
    	Dev    string
    	raw    RawSockaddrPPPoX
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    			// Success. Update the hint.
    			if !hint.down {
    				p += n
    			}
    			hint.addr = p
    			size = n
    			break
    		}
    		// Failed. Discard this hint and try the next.
    		//
    		// TODO: This would be cleaner if sysReserve could be
    		// told to only return the requested address. In
    		// particular, this is already how Windows behaves, so
    		// it would simplify things there.
    		if v != nil {
    			sysFreeOS(v, n)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    include::{snippetsPath}/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildCustomMethodsWithTaskArg.out[]
    ----
    ====
    
    This technique can make your custom task easier to use and result in cleaner build files.
    As an added benefit, our use of `TaskProvider` means that our custom method can set up an inferred task dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top