Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 113 for Meyers (0.17 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                    if (lastUpdated != null && now != null && now.compareTo(lastUpdated) < 0) {
                        getLogger()
                                .warn("The last updated timestamp in " + metadataFile + " refers to the future (now = "
                                        + now
                                        + ", lastUpdated = " + lastUpdated + "). Please verify that the clocks of all"
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         * is returned. If this <code>SmbFile</code> refers to the root of this
         * SMB network hierarchy, <code>null</code> is returned.
         * 
         * @return The server or workgroup name or <code>null</code> if this
         *         <code>SmbFile</code> refers to the root <code>smb://</code> resource.
         */
        public String getServer () {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                    }
                }
            }
            return result;
        }
    
        /**
         * Checks the URL to see if this repository refers to an external repository
         *
         * @param originalRepository
         * @return true if external.
         */
        static boolean isExternalRepo(ArtifactRepository originalRepository) {
            try {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  4. src/bufio/bufio.go

    // to the default size.
    // Calling b.Reset(b) (that is, resetting a [Reader] to itself) does nothing.
    func (b *Reader) Reset(r io.Reader) {
    	// If a Reader r is passed to NewReader, NewReader will return r.
    	// Different layers of code may do that, and then later pass r
    	// to Reset. Avoid infinite recursion in that case.
    	if b == r {
    		return
    	}
    	if b.buf == nil {
    		b.buf = make([]byte, defaultBufSize)
    	}
    	b.reset(b.buf, r)
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
  5. architecture/security/istio-agent.md

    ![SDS decision flow](docs/sds-flow.svg)
    
    ### Default CA Flow through istio-agent
    
    ![CA Flow](docs/ca.svg)
    
    A single SDS request from Envoy goes through a few different layers in istio-agent.
    
    1. First, the request is handled by the SDS server. This is mostly just an intermediate translation layer exposing
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Aug 22 16:45:50 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  6. cmd/admin-handlers-pools.go

    		ID string `json:"id"`
    	}{ID: id})
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	writeSuccessResponseJSON(w, b)
    	// Notify peers to load rebalance.bin and start rebalance routine if they happen to be
    	// participating pool's leader node
    	globalNotificationSys.LoadRebalanceMeta(ctx, true)
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1beta1/generated.proto

    // CSIDriver objects are non-namespaced.
    message CSIDriver {
      // Standard object metadata.
      // metadata.Name indicates the name of the CSI driver that this object
      // refers to; it MUST be the same name returned by the CSI GetPluginName()
      // call for that driver.
      // The driver name must be 63 characters or less, beginning and ending with
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                        withPsiEntry("parent", parent)
                    }
            }
        }
    }
    
    /**
     *  The left hand side of a `::` is regarded as used unless it refers to a type.
     *  We decide that the LHS is a type reference by checking if the left hand
     *  side is a (qualified) name, and, in case it _is_, resolving that name.
     *
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Feb 12 20:38:23 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  9. README.md

             alt="Istio logo" title="Istio" height="100" width="100" />
    </a>
    
    ---
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 15:28:59 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

         * best we can do (since logging may overflow the stack) is to let the error propagate. Because
         * it is an Error, it won't be caught and logged by AbstractFuture.executeListener. Instead, it
         * can propagate through many layers of AbstractTransformFuture up to the root call to set().
         *
         * https://github.com/google/guava/issues/2254
         *
         * Other kinds of Errors are possible:
         *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 10.6K bytes
    - Viewed (0)
Back to top