Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,553 for almost (0.19 sec)

  1. src/go/doc/comment/testdata/list7.txt

    -- input --
    Almost list markers (but not quite):
    
     -
    
    ❦
    
     - $
    
    ❦
    
     - $
    
    ❦
    
      $
       $
    
    ❦
    
     1! List.
    
    ❦
    -- gofmt --
    Almost list markers (but not quite):
    
    	-
    
    ❦
    
    	- $
    
    ❦
    
    	- $
    
    ❦
    
    ❦
    
    	1! List.
    
    ❦
    -- text --
    Almost list markers (but not quite):
    
    	-
    
    ❦
    
    	-
    
    ❦
    
    	-
    
    ❦
    
    ❦
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 565 bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/head2.txt

    -- input --
    ✦
    
    Almost a+heading
    
    ✦
    
    Don't be a heading
    
    ✦
    
    A.b is a heading
    
    ✦
    
    A. b is not a heading
    
    ✦
    -- gofmt --
    ✦
    
    Almost a+heading
    
    ✦
    
    Don't be a heading
    
    ✦
    
    # A.b is a heading
    
    ✦
    
    A. b is not a heading
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:46 UTC 2022
    - 232 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/duration/duration.go

    // with limited precision for consumption by humans.
    func ShortHumanDuration(d time.Duration) string {
    	// Allow deviation no more than 2 seconds(excluded) to tolerate machine time
    	// inconsistence, it can be considered as almost now.
    	if seconds := int(d.Seconds()); seconds < -1 {
    		return "<invalid>"
    	} else if seconds < 0 {
    		return "0s"
    	} else if seconds < 60 {
    		return fmt.Sprintf("%ds", seconds)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/virtualservice_dupmatches.yaml

            prefix: /api/v1/products
        route:
        - destination:
            host: sample.bar.svc.cluster.local
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: almost-duplicate-match
    spec:
      hosts:
      - sample.bar.svc.cluster.local
      http:
      - match:
        - uri:
            prefix: /api/v1/products
        route:
        - destination:
            host: sample.foo.svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/assign/doc.go

    //
    // # Analyzer assign
    //
    // assign: check for useless assignments
    //
    // This checker reports assignments of the form x = x or a[i] = a[i].
    // These are almost always useless, and even when they aren't they are
    // usually a mistake.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 481 bytes
    - Viewed (0)
  6. tests/integration/base.yaml

        accessLogFile: "/dev/stdout"
        defaultConfig:
          proxyMetadata:
            ISTIO_META_DNS_CAPTURE: "true"
      values:
        pilot:
          # Lower the reconnect time so we test reconnects. The default of 30min means we almost never trigger in tests.
          keepaliveMaxServerConnectionAge: 120s
          autoscaleEnabled: false
          env:
            ENABLE_EXTERNAL_NAME_ALIAS: true
            UNSAFE_ENABLE_ADMIN_ENDPOINTS: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    			},
    			expectedCode: http.StatusOK,
    		},
    		{
    			name: "almost-percent-escaped-userextras",
    			user: &user.DefaultInfo{
    				Name:   "dev",
    				Groups: []string{"wheel", "almost-escaped-scopes"},
    			},
    			impersonationUser:       "system:admin",
    			impersonationUserExtras: map[string][]string{"almost%zzpercent%xxencoded": {"scope-a", "scope-b"}},
    			expectedUser: &user.DefaultInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/empty-scm/pom.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <!--
      This (almost) minimal POM tests direct inheritance from the super POM.
      -->
    
      <groupId>org.apache.maven.its.mng3843</groupId>
      <artifactId>test-1</artifactId>
      <version>0.1</version>
    
      <name>test</name>
    
      <build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/escape/ArrayBasedCharEscaper.java

          // to ensure the first test of either value will (almost certainly) fail.
          safeMax = Character.MIN_VALUE;
          safeMin = Character.MAX_VALUE;
        }
        this.safeMin = safeMin;
        this.safeMax = safeMax;
      }
    
      /*
       * This is overridden to improve performance. Rough benchmarking shows that this almost doubles
       * the speed when processing strings that do not require any escaping.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MBeanOsMemoryInfo.java

    /**
     * Uses the JVM's own interpretation of total and free memory. Gives accurate values on Solaris.
     * On Linux or MacOs, the free memory metric doesn't include reclaimable file system caches and will thus always report that the system is almost out of memory.
     * Use {@link MemInfoOsMemoryInfo} and {@link NativeOsMemoryInfo} instead.
     * On Windows, this doesn't include the secondary commit limit, which is the maximum amount of virtual memory that can be allocated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 21:48:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top