Search Options

Results per page
Sort
Preferred Languages
Advance

Results 3811 - 3820 of 3,913 for getE (0.05 sec)

  1. guava-tests/test/com/google/common/graph/GraphsTest.java

        }
    
        directedGraph.addEdge(N2, N1, E21);
        // View should be updated.
        assertThat(transpose.edgesConnecting(N1, N2)).containsExactly(E21);
        assertThat(transpose.edgeConnecting(N1, N2).get()).isEqualTo(E21);
        assertThat(transpose.edgeConnectingOrNull(N1, N2)).isEqualTo(E21);
        AbstractNetworkTest.validateNetwork(transpose);
      }
    
      @Test
      public void inducedSubgraph_graph() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 02 18:21:29 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. docs/sts/ldap.md

    ## Configuring AD/LDAP on MinIO
    
    LDAP STS configuration can be performed via MinIO's standard configuration API (i.e. using `mc admin config set/get` commands) or equivalently via environment variables. For brevity we refer to environment variables here.
    
    LDAP is configured via the following environment variables:
    
    ```
    $ mc admin config set myminio identity_ldap --env
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/TraversalUtil.java

         * @return URLを扱う{@link Traverser}
         */
        protected static Traverser getTraverser(final URL url, final String rootPackage, final String rootDir) {
            final TraverserFactory factory = traverserFactories.get(URLUtil.toCanonicalProtocol(url.getProtocol()));
            if (factory != null) {
                return factory.create(url, rootPackage, rootDir);
            }
            logger.log("WCL0013", asArray(rootPackage, url));
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.23.md

      
      Fixed multiple iptables proxy regressions introduced in 1.22:
      
        - When using Services with SessionAffinity, client affinity for an
          endpoint now gets broken when that endpoint becomes non-ready
          (rather than continuing until the endpoint is fully deleted).
      
        - Traffic to a service IP now starts getting rejected (as opposed to
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

            if (value == null || value.getClass() != String.class && destPropertyClass != null && destPropertyClass != String.class) {
                return value;
            }
            Converter converter = converterMap.get(destPropertyName);
            if (converter == null) {
                final Class<?> targetClass;
                if (value.getClass() != String.class) {
                    targetClass = value.getClass();
                } else {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/bigger-applications.md

    {!../../docs_src/bigger_applications/app/routers/items.py!}
    ```
    
    Como o caminho de cada *operação de rota* deve começar com `/`, como em:
    
    ```Python hl_lines="1"
    @router.get("/{item_id}")
    async def read_item(item_id: str):
        ...
    ```
    
    ...o prefixo não deve incluir um `/` final.
    
    Então, o prefixo neste caso é `/items`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. cmd/signature-v4-parser_test.go

    		// "X-Amz-Algorithm", "X-Amz-Credential", "X-Amz-Signature", " X-Amz-Date", "X-Amz-SignedHeaders", "X-Amz-Expires".
    		// If these params are missing its expected to get ErrInvalidQueryParams .
    		// In the following test case 2 out of 6 query params are missing.
    		{
    			inputQueryKeyVals: []string{
    				"X-Amz-Algorithm", "",
    				"X-Amz-Credential", "",
    				"X-Amz-Signature", "",
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. src/bytes/buffer.go

    		return 0
    	}
    	c := cap(b.buf)
    	if n <= c/2-m {
    		// We can slide things down instead of allocating a new
    		// slice. We only need m+n <= c to slide, but
    		// we instead let capacity get twice as large so we
    		// don't spend all our time copying.
    		copy(b.buf, b.buf[b.off:])
    	} else if c > maxInt-c-n {
    		panic(ErrTooLarge)
    	} else {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Oct 29 16:47:05 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // but not yet healthy are considered disrupted and can be evicted regardless
      // of whether the criteria in a PDB is met. This means perspective running
      // pods of a disrupted application might not get a chance to become healthy.
      // Healthy pods will be subject to the PDB for eviction.
      //
      // Additional policies may be added in the future.
      // Clients making eviction decisions should disallow eviction of unhealthy pods
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    - Fixed a `v1.28` regression in scheduler: a pod with concurrent events could incorrectly get moved to the unschedulable queue where it could get stuck until the next periodic purging after 5 minutes, if there was no other event for it. ([#120413](https://github.com/kubernetes/kubernetes/pull/120413), [@pohly](https://github.com/pohly))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Oct 23 04:37:31 UTC 2024
    - 375.1K bytes
    - Viewed (1)
Back to top