Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 177 for capmem (0.43 sec)

  1. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableList.java

        Object[] elements = collection.toArray();
        switch (elements.length) {
          case 0:
            return of();
          case 1:
            @SuppressWarnings("unchecked") // safe because it came from `collection`
            E element = (E) elements[0];
            return of(element);
          default:
            return new RegularImmutableList<E>(ImmutableList.<E>nullCheckedList(elements));
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/math/lgamma.go

    package math
    
    /*
    	Floating-point logarithm of the Gamma function.
    */
    
    // The original C code and the long comment below are
    // from FreeBSD's /usr/src/lib/msun/src/e_lgamma_r.c and
    // came with this notice. The go code is a simplified
    // version of the original C.
    //
    // ====================================================
    // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    [%header%autowidth,compact]
    |===
    | Reason    | Meaning
    
    | (Absent)
    | No reason other than a reference, direct or transitive, was present.
    
    | Was requested : <text>
    | The dependency appears in the graph, and the inclusion came with a <<declaring_dependencies#sec:documenting-dependencies, `because` text>>.
    
    | Was requested : didn't match versions <versions>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity.go

    		preferredNodeAffinity: preferredNodeAffinity,
    	}
    	cycleState.Write(preScoreStateKey, state)
    	return nil
    }
    
    // Score returns the sum of the weights of the terms that match the Node.
    // Terms came from the Pod .spec.affinity.nodeAffinity and from the plugin's
    // default affinity.
    func (pl *NodeAffinity) Score(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string) (int64, *framework.Status) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

            expect:
            2.times {
                executer.inDirectory(file('sub')).withTasks('c').withArguments('-x', 'a').run().assertTasksExecuted(':a', ':sub:b', ':sub:c')
            }
        }
    
        def 'can use camel-case matching to exclude tasks'() {
            buildFile << """
                task someDep
                task someOtherDep
                task someTask(dependsOn: [someDep, someOtherDep])
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    The same applies to project names. You can execute the `check` task in the `library` subproject with the `gradle lib:che` command.
    
    You can use https://en.wikipedia.org/wiki/Camel_case[camel case] patterns for more complex abbreviations. These patterns are expanded to match camel case and https://en.wikipedia.org/wiki/Kebab_case[kebab case] names.
    For example, the pattern `foBa` (or `fB`) matches `fooBar` and `foo-bar`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

        }
    
        @Managed
        interface HasSingleCharFirstPartGetter {
            String getcCompiler()
            void setcCompiler(String cCompiler)
        }
    
        def "extraction of single char first camel-case part getter like getcCompiler() is javabeans compliant"() {
            when:
            def schema = store.getSchema(HasSingleCharFirstPartGetter)
    
            then:
            schema instanceof ManagedImplSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  8. pkg/apis/autoscaling/types.go

    	AbleToScale HorizontalPodAutoscalerConditionType = "AbleToScale"
    	// ScalingLimited indicates that the calculated scale based on metrics would be above or
    	// below the range for the HPA, and has thus been capped.
    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    	return resourceManager{
    		source:                   source,
    		resourceDiscoveryManager: rm.resourceDiscoveryManager,
    	}
    }
    
    type groupKey struct {
    	name string
    
    	// Source identifies where this group came from and dictates which group
    	// among duplicates is chosen to be used for discovery.
    	source Source
    }
    
    type groupVersionKey struct {
    	metav1.GroupVersion
    	source Source
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    	AbleToScale HorizontalPodAutoscalerConditionType = "AbleToScale"
    	// ScalingLimited indicates that the calculated scale based on metrics would be above or
    	// below the range for the HPA, and has thus been capped.
    	ScalingLimited HorizontalPodAutoscalerConditionType = "ScalingLimited"
    )
    
    // HorizontalPodAutoscalerCondition describes the state of
    // a HorizontalPodAutoscaler at a certain point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
Back to top