Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for Review (0.18 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    .admonitionblock.caution td.icon i {
    	background-image: url(./img/octicons-16.svg#view-flame)
    }
    
    .admonitionblock.important td.icon {
    	background-color: var(--important-color);
    	color: var(--important-on-color)
    }
    
    .admonitionblock.important td.icon i {
    	background-image: url(./img/octicons-16.svg#view-stop)
    }
    
    .admonitionblock.note td.icon {
    	background-color: var(--note-color);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/MapsTest.java

        /* No aliasing on inverse operations. */
        assertSame(unmod.inverse(), unmod.inverse());
        assertSame(unmod, unmod.inverse().inverse());
    
        /* Unmodifiable is a view. */
        mod.put(4, "four");
        assertEquals(true, unmod.get(4).equals("four"));
        assertEquals(true, unmod.inverse().get("four").equals(4));
    
        /* UnsupportedOperationException on direct modifications. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheBuilder.java

     *           }
     *         });
     * }</pre>
     *
     * <p>The returned cache implements all optional operations of the {@link LoadingCache} and {@link
     * Cache} interfaces. The {@code asMap} view (and its collection views) have <i>weakly consistent
     * iterators</i>. This means that they are safe for concurrent use, but if other threads modify the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. configure.py

        return None
    
      print('You have Clang %s installed.\n' % curr_version)
      return curr_version
    
    
    # Disable clang extension that rejects type definitions within offsetof.
    # This was added in clang-16 by https://reviews.llvm.org/D133574.
    # Still required for clang-17.
    # Can be removed once upb is updated, since a type definition is used within
    # offset of in the current version of ubp. See
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    We recommend the following steps for all users:
    
    . Try running `gradle help --scan` and view the https://gradle.com/enterprise/releases/2018.4/#identify-usages-of-deprecated-gradle-functionality[deprecations view] of the generated build scan.
    +
    image::deprecations.png[Deprecations View of a Gradle Build Scan]
    +
    This is so that you can see any deprecation warnings that apply to your build.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    			out = append(out, delegate.HashCode())
    		}
    	}
    	return out
    }
    
    // getSidecarScope returns a SidecarScope object associated with the
    // proxy. The SidecarScope object is a semi-processed view of the service
    // registry, and config state associated with the sidecar crd. The scope contains
    // a set of inbound and outbound listeners, services/configs per listener,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    On the opposite, the ASCII-armored format is human-readable, can be easily updated by hand and makes it easier to do code reviews thanks to readable diffs.
    
    You can configure which file type would be used by adding the `keyring-format` configuration option:
    
    [source,xml]
    ----
    <?xml version="1.0" encoding="UTF-8"?>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  8. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-roxio-toast",
    				"application/x-rpm",
    				"application/x-sas",
    				"application/x-sas-program-data",
    				"application/x-sas-audit",
    				"application/x-sas-data",
    				"application/x-sas-view",
    				"application/x-sas-data-index",
    				"application/x-sas-catalog",
    				"application/x-sas-access",
    				"application/x-sas-fdb",
    				"application/x-sas-mddb",
    				"application/x-sas-dmdb",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    	ourg := getg()
    
    	pcbuf := makeProfStack() // see saveg() for explanation
    	stw := stopTheWorld(stwGoroutineProfile)
    	// Using gcount while the world is stopped should give us a consistent view
    	// of the number of live goroutines, minus the number of goroutines that are
    	// alive and permanently marked as "system". But to make this count agree
    	// with what we'd get from isSystemGoroutine, we need special handling for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			return err
    		}
    		// If UpdateContainerResources is error-free, it means desired values for 'resourceName' was accepted by runtime.
    		// So we update currentContainerResources for 'resourceName', which is our view of most recently configured resources.
    		// Note: We can't rely on GetPodStatus as runtime may lag in actuating the resource values it just accepted.
    		switch resourceName {
    		case v1.ResourceMemory:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top