Search Options

Results per page
Sort
Preferred Languages
Advance

Results 351 - 360 of 2,372 for light (0.22 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/SortedMapGenerators.java

          return new Ordering<Entry<String, Integer>>() {
            @Override
            public int compare(Entry<String, Integer> left, Entry<String, Integer> right) {
              return left.getKey().compareTo(right.getKey());
            }
          }.sortedCopy(insertionOrder);
        }
    
        @Override
        public List<Entry<String, Integer>> create(Object... elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/qos_container_manager_linux.go

    			if err := cm.Create(containerConfig); err != nil {
    				return fmt.Errorf("failed to create top level %v QOS cgroup : %v", qosClass, err)
    			}
    		} else {
    			// to ensure we actually have the right state, we update the config on startup
    			if err := cm.Update(containerConfig); err != nil {
    				return fmt.Errorf("failed to update top level %v QOS cgroup : %v", qosClass, err)
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/html.go

        tab-size:      4;
    }
    
    .allow-x-scroll {
        overflow-x: scroll;
    }
    
    .lines {
        float: left;
        overflow: hidden;
        text-align: right;
        margin-top: 7px;
    }
    
    .lines div {
        padding-right: 10px;
        color: gray;
    }
    
    div.line-number {
        font-size: 12px;
    }
    
    .ast {
        white-space: nowrap;
    }
    
    td.ssa-prog {
        width: 600px;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    [[tutorial_using_tasks]]
    = Using Tasks
    
    The work that Gradle can do on a project is defined by one or more _tasks_.
    
    image::author-gradle-5.png[]
    
    A task represents some independent unit of work that a build performs.
    This might be compiling some classes, creating a JAR, generating Javadoc, or publishing some archives to a repository.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/crypto/internal/edwards25519/field/fe_generic.go

    	// to respect the Element invariant.
    	//
    	// Overall, the reduction works the same as carryPropagate, except with
    	// wider inputs: we take the carry for each coefficient by shifting it right
    	// by 51, and add it to the limb above it. The top carry is multiplied by 19
    	// according to the reduction identity and added to the lowest limb.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. test/fixedbugs/issue15091.go

    // or (now, with the error caught earlier)
    //    Treating auto as if it were arg, func (*Html).xyzzy, node ...
    // caused by racewalker inserting instrumentation before an OAS where the Ninit
    // of the OAS defines part of its right-hand-side. (I.e., the race instrumentation
    // references a variable before it is defined.)
    func (options *Html) xyzzy(id string) string {
    	for count, found := options.headerIDs[id]; found; count, found = options.headerIDs[id] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 989 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Container.puml

        FontColor ELEMENT_FONT_COLOR
        BackgroundColor CONTAINER_BG_COLOR
        BorderColor #3C7FC0
    }
    
    ' Layout
    ' ##################################
    
    !definelong LAYOUT_WITH_LEGEND
    hide stereotype
    legend right
    |=              |= Type |
    |<PERSON_BG_COLOR>      | person |
    |<EXTERNAL_PERSON_BG_COLOR>      | external person |
    |<SYSTEM_BG_COLOR>   | system |
    |<EXTERNAL_SYSTEM_BG_COLOR>      | external system |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_ppc64x.s

    	STACK_AND_SAVE_HOST_TO_GO_ABI(32)
    
    	// this might be called in external code context,
    	// where g is not set.
    	MOVBZ	runtimeĀ·iscgo(SB), R6
    	CMP	R6, $0
    	BEQ	2(PC)
    	BL	runtimeĀ·load_g(SB)
    
    	// R3,R4,R5 already hold the arguments. Forward them on.
    	// TODO: Indirectly call runtime.sigtrampgo to avoid the linker's static NOSPLIT stack
    	// overflow detection. It thinks this might be called on a small Go stack, but this is only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/failure/mappers/MockFailure.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.failure.mappers
    
    /**
     * Simple AssertionError subclass to test with
     * This makes it sure we catch the right assertion error
     */
    class MockFailure extends AssertionError {
        MockFailure(int detailMessage) {
            super(detailMessage)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 909 bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/RegularContiguousSet.java

          }
        };
      }
    
      private static boolean equalsOrThrow(Comparable<?> left, @CheckForNull Comparable<?> right) {
        return right != null && Range.compareOrThrow(left, right) == 0;
      }
    
      @Override
      boolean isPartialView() {
        return false;
      }
    
      @Override
      public C first() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top