Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,038 for root (0.17 sec)

  1. cmd/common-main_test.go

    					Key:   "MINIO_ROOT_PASSWORD",
    					Value: "minio123",
    				},
    			},
    		},
    		{
    			`
    export MINIO_ROOT_USERminio
    export MINIO_ROOT_PASSWORD=minio123`,
    			true,
    			nil,
    		},
    		{
    			`
    # simple comment
    # MINIO_ROOT_USER=minioadmin
    # MINIO_ROOT_PASSWORD=minioadmin
    MINIO_ROOT_USER=minio
    MINIO_ROOT_PASSWORD=minio123`,
    			false,
    			[]envKV{
    				{
    					Key:   "MINIO_ROOT_USER",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Sep 19 18:05:16 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultDependencyResolutionResult.java

        private Map<Dependency, List<Exception>> resolutionErrors = new IdentityHashMap<>();
    
        public DependencyNode getDependencyGraph() {
            return root;
        }
    
        public void setDependencyGraph(DependencyNode root) {
            this.root = root;
        }
    
        public List<Dependency> getDependencies() {
            return dependencies;
        }
    
        public List<Dependency> getResolvedDependencies() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/DfsTest.java

                String dfsTestSharePath = getDFSTestSharePath();
                DfsReferralData ref = doResolve(dfsTestSharePath.toUpperCase(Locale.ROOT), "foo", false);
                assertNotNull(ref);
                assertEquals(getTestServer().toLowerCase(Locale.ROOT), ref.getServer().toLowerCase(Locale.ROOT));
            }
    
        }
    
    
        @Test
        public void testStandaloneDFSCache () throws CIFSException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 13.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/TreeTraverser.java

      @Deprecated
      public final FluentIterable<T> preOrderTraversal(final T root) {
        checkNotNull(root);
        return new FluentIterable<T>() {
          @Override
          public UnmodifiableIterator<T> iterator() {
            return preOrderIterator(root);
          }
        };
      }
    
      UnmodifiableIterator<T> preOrderIterator(T root) {
        return new PreOrderIterator(root);
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

                                "Failed to read documentation for expression root: " + root, e);
                    } catch (XmlPullParserException e) {
                        throw new ExpressionDocumentationException(
                                "Failed to parse documentation for expression root: " + root, e);
                    }
                }
            }
    
            return expressionDocumentation;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.2K bytes
    - Viewed (0)
  6. guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java

            Optional<BinaryNode> root = Optional.absent();
            for (int i = 0; i < size; i++) {
              root = Optional.of(new BinaryNode(rng.nextInt(), root, Optional.<BinaryNode>absent()));
            }
            return root;
          }
        },
        ALL_RIGHT {
          @Override
          Optional<BinaryNode> createTree(int size, Random rng) {
            Optional<BinaryNode> root = Optional.absent();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 26 19:18:53 GMT 2019
    - 4.9K bytes
    - Viewed (0)
  7. docs/de/docs/advanced/behind-a-proxy.md

    </div>
    
    Falls Sie Hypercorn verwenden, das hat auch die Option `--root-path`.
    
    !!! note "Technische Details"
        Die ASGI-Spezifikation definiert einen `root_path` für diesen Anwendungsfall.
    
        Und die Kommandozeilenoption `--root-path` stellt diesen `root_path` bereit.
    
    ### Überprüfen des aktuellen `root_path`
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:30:07 GMT 2024
    - 13.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

                super.rootArtifact(rootArtifact);
                return this;
            }
    
            @Nonnull
            @Override
            public DependencyResolverRequestBuilder root(@Nullable DependencyCoordinate root) {
                super.root(root);
                return this;
            }
    
            @Nonnull
            @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/Transport.java

         * root.
         *
         * @return the string if operation succeeded, {@code null} if source does not exist.
         * @throws RuntimeException If failed (and not due source not exists).
         */
        @Nonnull
        Optional<String> getString(@Nonnull URI relativeSource, @Nonnull Charset charset);
    
        /**
         * GETs the source URI content as string using UTF8 charset. The source MUST BE relative from the
         * {@link RemoteRepository#getUrl()} root.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

             * which to start, and using expressions split at the dot ('.') to navigate
             * the object graph beneath this root.
             * @param root the root of the graph.
             */
            public ObjectBasedValueSource(Object root) {
                super(true);
                this.root = root;
            }
    
            /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20K bytes
    - Viewed (0)
Back to top