Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 184 for Hour (0.16 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                            null,
                            "must not be 'local'" + ", this identifier is reserved for the local repository"
                                    + ", using it for other repositories will corrupt your repository metadata.",
                            repository);
                }
    
                if ("legacy".equals(repository.getLayout())) {
                    addViolation(
                            problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/CharMatcher.java

      public CharMatcher or(CharMatcher other) {
        return new Or(this, other);
      }
    
      /**
       * Returns a {@code char} matcher functionally equivalent to this one, but which may be faster to
       * query than the original; your mileage may vary. Precomputation takes time and is likely to be
       * worthwhile only if the precomputed matcher is queried many thousands of times.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/CharMatcher.java

      public CharMatcher or(CharMatcher other) {
        return new Or(this, other);
      }
    
      /**
       * Returns a {@code char} matcher functionally equivalent to this one, but which may be faster to
       * query than the original; your mileage may vary. Precomputation takes time and is likely to be
       * worthwhile only if the precomputed matcher is queried many thousands of times.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	return update.Pod.UID, klog.KObj(update.Pod)
    }
    
    // podWorkerLoop manages sequential state updates to a pod in a goroutine, exiting once the final
    // state is reached. The loop is responsible for driving the pod through four main phases:
    //
    // 1. Wait to start, guaranteeing no two pods with the same UID or same fullname are running at the same time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/javadoc.css

        grid-template-columns: minmax(40%, max-content) minmax(10%, max-content) minmax(40%, auto);
    }
    .four-column-summary {
        display: grid;
        grid-template-columns: minmax(10%, max-content) minmax(15%, max-content) minmax(15%, max-content) minmax(15%, auto);
    }
    @media screen and (max-width: 1000px) {
        .four-column-summary {
            display: grid;
            grid-template-columns: minmax(15%, max-content) minmax(15%, auto);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  6. cmd/bucket-handlers.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    	}
    
    	// Linux [5.9,5.16) has a kernel bug that can break CPU timers on newly
    	// created threads, breaking our CPU accounting.
    	major, minor := unix.KernelVersion()
    	t.Logf("Running on Linux %d.%d", major, minor)
    	defer func() {
    		if t.Failed() {
    			t.Logf("Failure of this test may indicate that your system suffers from a known Linux kernel bug fixed on newer kernels. See https://golang.org/issue/49065.")
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    				"alt-known.default.svc.cluster.local": {"outbound|80||alt-known.default.svc.cluster.local"},
    				// Explicit has precedence
    				"known.default.svc.cluster.local": {"outbound|80||explicit.example.com"},
    				// Last is our wildcard
    				"*.cluster.local": {"outbound|80||wild.example.com"},
    			},
    			oldestWins: true,
    		},
    		{
    			name: "wildcard first then explicit",
    			cfg: []Configer{
    				vsArgs{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    				spInputs++
    			} else {
    				return false, r
    			}
    		}
    		return v.Type.IsMemory() && memInputs == 1 &&
    			regInputs == 1 && spInputs == 1, r
    	}
    
    	// OpArg*Reg values we've seen so far on our forward walk,
    	// for which we have not yet seen a corresponding spill.
    	regArgs := make([]ID, 0, 32)
    
    	// removeReg tries to remove a value from regArgs, returning true
    	// if found and removed, or false otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. cmd/xl-storage.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top