Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 325 for runes (0.13 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

                binding.onUnbind(node);
            }
        }
    
        /**
         * Returns the set of rules with the given target as their subject.
         */
        public Collection<RuleBinder> getRulesWithSubject(NodeAtState target) {
            return rulesBySubject.get(target);
        }
    
        /**
         * Returns the set of rules with the given input.
         */
        public Collection<RuleBinder> getRulesWithInput(NodeAtState input) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        setDefault(type, value1);
        return this;
      }
    
      /**
       * Tests that {@code cls} properly checks null on all constructor and method parameters that
       * aren't annotated nullable (according to the rules of {@link NullPointerTester}). In details:
       *
       * <ul>
       *   <li>All non-private static methods are checked such that passing null for any parameter
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. src/encoding/json/decode.go

    			c = c - 'A' + 10
    		default:
    			return -1
    		}
    		r = r*16 + rune(c)
    	}
    	return r
    }
    
    // unquote converts a quoted JSON string literal s into an actual string t.
    // The rules are different than for Go, so cannot use strconv.Unquote.
    func unquote(s []byte) (t string, ok bool) {
    	s, ok = unquoteBytes(s)
    	t = string(s)
    	return
    }
    
    // unquoteBytes should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

            }
            ImmutableList.Builder<ExcludeMetadata> rules = ImmutableList.builderWithExpectedSize(excludes.size());
            for (Exclude exclude : excludes) {
                Set<String> ruleConfigurations = exclude.getConfigurations();
                if (include(ruleConfigurations, configurations)) {
                    rules.add(exclude);
                }
            }
            return rules.build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     * well as a simple framework for helping to make sure that assertions failing in generated threads
     * cause the associated test that generated them to itself fail (which JUnit does not otherwise
     * arrange). The rules for creating such tests are:
     *
     * <ol>
     *   <li>All assertions in code running in generated threads must use the forms {@link #threadFail},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. samples/addons/prometheus.yaml

        global:
          evaluation_interval: 1m
          scrape_interval: 15s
          scrape_timeout: 10s
        rule_files:
        - /etc/config/recording_rules.yml
        - /etc/config/alerting_rules.yml
        - /etc/config/rules
        - /etc/config/alerts
        scrape_configs:
        - job_name: prometheus
          static_configs:
          - targets:
            - localhost:9090
        - bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    // limitations under the License.
    
    [[gradle_daemon]]
    = Gradle Daemon
    
    A daemon is a computer program that runs as a background process rather than being under the direct control of an interactive user.
    
    Gradle runs on the Java Virtual Machine (JVM) and uses several supporting libraries with non-trivial initialization time.
    Startups can be slow.
    The **Gradle Daemon** solves this problem.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. hack/golangci.yaml

          msg: should not be used because managedFields was removed
      gocritic:
        enabled-checks:
          - equalFold
          - boolExprSimplify
      revive:
        # Only these rules are enabled.
        rules:
          - name: exported
            arguments:
            - disableStutteringCheck
      staticcheck:
        checks:
          - "all"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	// needed, use GetUID.
    	GetName() string
    	// GetClientConfig gets the webhook ClientConfig field.
    	GetClientConfig() v1.WebhookClientConfig
    	// GetRules gets the webhook Rules field.
    	GetRules() []v1.RuleWithOperations
    	// GetFailurePolicy gets the webhook FailurePolicy field.
    	GetFailurePolicy() *v1.FailurePolicyType
    	// GetMatchPolicy gets the webhook MatchPolicy field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/server.go

    kube-scheduler is the reference implementation.
    See [scheduling](https://kubernetes.io/docs/concepts/scheduling-eviction/)
    for more information about scheduling and the kube-scheduler component.`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			return runCommand(cmd, opts, registryOptions...)
    		},
    		Args: func(cmd *cobra.Command, args []string) error {
    			for _, arg := range args {
    				if len(arg) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top