Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 722 for place (0.17 sec)

  1. src/main/java/jcifs/pac/kerberos/KerberosApRequest.java

     * Lesser General Public License for more details.
     * 
     * You should have received a copy of the GNU Lesser General Public
     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.pac.kerberos;
    
    
    import java.io.ByteArrayInputStream;
    import java.io.IOException;
    import java.math.BigInteger;
    import java.util.Enumeration;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/get_issue53955.txt

    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    # Inject a local repo in place of a remote one, so that we can
    # add commits to the repo partway through the test.
    env GIT_ALLOW_PROTOCOL=file
    env GOPRIVATE=github.com/golang/issue53955
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     *  Library General Public License for more details.
     *
     *  You should have received a copy of the GNU Library General Public
     *  License along with this library; if not, write to the Free Software
     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    /*
     *  Automated Interface (generates HTML Report Files).
     *
     *  Feb 2002      Initial implementation (AK)
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_download_partial.txt

    # is reported for directories not in the main module, active modules in the
    # module cache, or local replacements. In this case, the directory is in the
    # right place, but it's incomplete, so 'go list' acts as if it's not an
    # active module.
    ! go list $GOPATH/pkg/mod/rsc.io/quote@v1.5.2
    stderr 'outside main module or its selected dependencies'
    
    # 'go list -m' should not print the directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 10 19:08:19 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/AbstractCompiler.java

        protected List<String> getArguments(T spec) {
            List<String> args = argsTransformer.transform(spec);
    
            Action<List<String>> userArgTransformer = invocationContext.getArgAction();
            // modifies in place
            userArgTransformer.execute(args);
    
            if (useCommandFile) {
                // Shorten args and write out an options.txt file
                // This must be called only once per execute()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. releasenotes/notes/external-name.yaml

          * Ports not declared as `HTTP` would match *all* traffic on that port, making it easy to accidentally send all traffic on a port to the wrong place.
          * Because the destination DNS name is treated as opaque, we cannot apply Istio policies to it as expected. For example, if I point
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/looprotate.go

    		f.Blocks[idToIdx[loop.header.ID]] = p
    		f.Blocks[idToIdx[p.ID]] = loop.header
    		idToIdx[loop.header.ID], idToIdx[p.ID] = idToIdx[p.ID], idToIdx[loop.header.ID]
    
    		// Place b after p.
    		for _, b := range after[p.ID] {
    			move[b.ID] = struct{}{}
    		}
    	}
    
    	// Move blocks to their destinations in a single pass.
    	// We rely here on the fact that loop headers must come
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. pkg/util/sets/set.go

    		if !s2.Contains(key) {
    			result.Insert(key)
    		}
    	}
    	return result
    }
    
    // DifferenceInPlace similar to Difference, but has better performance.
    // Note: This function modifies s in place.
    func (s Set[T]) DifferenceInPlace(s2 Set[T]) Set[T] {
    	for key := range s {
    		if s2.Contains(key) {
    			delete(s, key)
    		}
    	}
    	return s
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ObjectBasedValueSource.java

         * accessor types to resolve the value for each successive expression part.
         * Finally, return the result of the last expression part's resolution.</p>
         *
         * <p><b>NOTE:</b> The object-graph nagivation actually takes place via the
         * {@link ReflectionValueExtractor} class.</p>
         */
        public Object getValue(String expression) {
            if (expression == null || expression.trim().isEmpty()) {
                return null;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/codegen/FunctionSinceRepository.kt

                            // This is a hack.
                            //
                            // qdox doesn't understand annotations placed in generic type parameters
                            // The only place we use this is with Nullable, so this hackily removes the annotation when
                            // the source file is processed by qdox.
                            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top