Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for Arial (0.15 sec)

  1. src/main/webapp/css/admin/bootstrap.min.css.map

    #343a40;\n  --breakpoint-xs: 0;\n  --breakpoint-sm: 576px;\n  --breakpoint-md: 768px;\n  --breakpoint-lg: 992px;\n  --breakpoint-xl: 1200px;\n  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\n*,\n*::before,\n*::after...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 626.8K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/FileWalkingBenchmark.java

        Path tempDirPath;
        Path missingPath;
        Path existingPath;
        File tempDirFile;
        File missingFile;
        File existingFile;
    
        @Param({"true", "false"})
        boolean missing;
    
        @Setup(Level.Trial)
        public void setup() throws IOException {
            this.tempDirPath = Files.createTempDirectory("file-walking");
            this.tempDirFile = tempDirPath.toFile();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    				catchAlls[true] = ftr.fs
    			}
    		}
    		if testDebugLogs {
    			t.Logf("For trial %s, adding wf=%v FlowSchema %s", trial, ftr.wellFormed, fcfmt.Fmt(ftr.fs))
    		}
    	}
    	if n == 0 || rng.Float32() < 0.5 {
    		add(mandFTRCatchAll)
    	}
    	for i := 1; i <= n; i++ {
    		ftr := genFS(t, rng, fmt.Sprintf("%s-fs%d", trial, i), false, goodPLNames, badPLNames)
    		add(ftr)
    	}
    	if n == 0 || rng.Float32() < 0.5 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/graph/GraphMutationTest.java

      }
    
      private static void testGraphMutation(GraphBuilder<? super Integer> graphBuilder) {
        Random gen = new Random(42); // Fixed seed so test results are deterministic.
    
        for (int trial = 0; trial < NUM_TRIALS; ++trial) {
          MutableGraph<Integer> graph = graphBuilder.allowsSelfLoops(true).build();
    
          assertThat(graph.nodes()).isEmpty();
          assertThat(graph.edges()).isEmpty();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 18 16:17:46 UTC 2017
    - 4.2K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

         */
        public List<String> getDependencyTrail() throws OverConstrainedVersionException {
            List<Artifact> trial = getTrail();
    
            List<String> ret = new ArrayList<>(trial.size());
    
            for (Artifact artifact : trial) {
                ret.add(artifact.getId());
            }
    
            return ret;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. pkg/webhooks/validation/server/server.go

    func checkFields(raw []byte, kind string, namespace string, name string) (string, error) {
    	trial := make(map[string]json.RawMessage)
    	if err := json.Unmarshal(raw, &trial); err != nil {
    		scope.Infof("cannot decode configuration fields: %v", err)
    		return reasonYamlDecodeError, fmt.Errorf("cannot decode configuration fields: %v", err)
    	}
    
    	for key := range trial {
    		if _, ok := validFields[key]; !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. pkg/webhooks/validation/server/server_test.go

    	if err != nil {
    		t.Fatalf("Marshal(%v) failed: %v", name, err)
    	}
    	if includeBogusKey {
    		trial := make(map[string]any)
    		if err := json.Unmarshal(raw, &trial); err != nil {
    			t.Fatalf("Unmarshal(%v) failed: %v", name, err)
    		}
    		trial["unexpected_key"] = "any value"
    		if raw, err = json.Marshal(&trial); err != nil {
    			t.Fatalf("re-Marshal(%v) failed: %v", name, err)
    		}
    	}
    	return raw
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	Timeout time.Duration // kill target and assume failed after this duration (0 = unlimited)
    	Count   int           // run target this many times for each trial and give up if flaky (min 1 assumed; default 2 on command line set in main)
    	Verbose bool          // print long output about each trial (only useful for debugging bisect itself)
    
    	// State for running bisect, replaced during testing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/Utf8Test.java

        utf8Lengths.put(MAX_CODE_POINT, 4);
    
        Integer[] codePoints = utf8Lengths.keySet().toArray(new Integer[] {});
        StringBuilder sb = new StringBuilder();
        Random rnd = new Random();
        for (int trial = 0; trial < 100; trial++) {
          sb.setLength(0);
          int utf8Length = 0;
          for (int i = 0; i < 6; i++) {
            Integer randomCodePoint = codePoints[rnd.nextInt(codePoints.length)];
            sb.appendCodePoint(randomCodePoint);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. test/chan/sieve1.go

    // Test concurrency primitives: classical inefficient concurrent prime sieve.
    
    // Generate primes up to 100 using channels, checking the results.
    // This sieve consists of a linear chain of divisibility filters,
    // equivalent to trial-dividing each n by all primes p ≤ n.
    
    package main
    
    // Send the sequence 2, 3, 4, ... to channel 'ch'.
    func Generate(ch chan<- int) {
    	for i := 2; ; i++ {
    		ch <- i // Send 'i' to channel 'ch'.
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 1.5K bytes
    - Viewed (0)
Back to top