Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 485 for relativeTo (0.17 sec)

  1. pkg/kubelet/eviction/eviction_manager.go

    				klog.InfoS("Eviction manager: failed to update notifier", "notifier", notifier.Description(), "err", err)
    			}
    		}
    	}
    
    	// make observations and get a function to derive pod usage stats relative to those observations.
    	observations, statsFunc := makeSignalObservations(summary)
    	debugLogObservations("observations", observations)
    
    	// determine the set of thresholds met independent of grace period
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    
    /**
     * 
     */
    public abstract class SmbComTransaction extends ServerMessageBlock implements Enumeration<SmbComTransaction> {
    
        // relative to headerStart
        private static final int PRIMARY_SETUP_OFFSET = 61;
        private static final int SECONDARY_PARAMETER_OFFSET = 51;
    
        static final int DISCONNECT_TID = 0x01;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/escape/Escapers.java

       * ArrayBasedUnicodeEscaper} to provide the desired behavior. However this builder is suitable for
       * creating escapers that replace a relative small set of characters.
       *
       * @author David Beaumont
       * @since 15.0
       */
      public static final class Builder {
        private final Map<Character, String> replacementMap = new HashMap<>();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

            if (remapper.keepOriginalResource(path)) {
                // we're writing 2 copies of the resource: one relocated, the other not, in order to support `getResource/getResourceAsStream` with
                // both absolute and relative paths
                builder.put(name, resource);
            }
    
            String remappedResourceName = path != null ? remapper.maybeRelocateResource(path) : null;
            if (remappedResourceName != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    	// rootDirectory is the directory path to place kubelet files (volume
    	// mounts,etc).
    	RootDirectory string
    
    	// The Kubelet will load its initial configuration from this file.
    	// The path may be absolute or relative; relative paths are under the Kubelet's current working directory.
    	// Omit this flag to use the combination of built-in default configuration values and flags.
    	KubeletConfigFile string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

            hints.put(MavenModelMerger.CHILD_PATH_ADJUSTMENT, getChildPathAdjustment(child, parent, childPath));
            return merger.merge(child, parent, false, hints);
        }
    
        /**
         * Calculates the relative path from the base directory of the parent to the parent directory of the base directory
         * of the child. The general idea is to adjust inherited URLs to match the project layout (in SCM).
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

        /**
         * The sources for incremental change detection.
         *
         * @since 6.0
         */
        @SkipWhenEmpty
        @IgnoreEmptyDirectories
        @NormalizeLineEndings
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        protected FileCollection getStableSources() {
            return stableSources;
        }
    
        @Inject
        protected ObjectFactory getObjectFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

        private JavadocToolAdapter getJavadocToolAdapter() {
            return (JavadocToolAdapter) getJavadocTool().get();
        }
    
        /**
         * {@inheritDoc}
         */
        @PathSensitive(PathSensitivity.RELATIVE)
        @Override
        public FileTree getSource() {
            return super.getSource();
        }
    
        /**
         * Configures the javadoc executable to be used to generate javadoc documentation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

          tag = 6L,
        ) {
          derWriter.writeObjectIdentifier("2.999.3")
        }
    
        assertThat(buffer.readByteString()).isEqualTo("0603883703".decodeHex())
      }
    
      @Test fun `decode relative object identifier`() {
        val buffer =
          Buffer()
            .write("0D04c27B0302".decodeHex())
    
        val derReader = DerReader(buffer)
    
        derReader.read("test") { header ->
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

         * type (say) java.lang.Integer, it will not be able
         * to decide between a method that takes int and a
         * method that takes java.lang.Integer as a parameter.
         * <p>
         * This turns out to be a relatively rare case
         * where this is needed - however, functionality
         * like this is needed.
         *
         * @param methodName name of method
         * @param args       the actual arguments with which the method is called
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top