Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 353 for creators (0.3 sec)

  1. src/hash/crc32/crc32.go

    		return castagnoliTable
    	default:
    		return simpleMakeTable(poly)
    	}
    }
    
    // digest represents the partial evaluation of a checksum.
    type digest struct {
    	crc uint32
    	tab *Table
    }
    
    // New creates a new [hash.Hash32] computing the CRC-32 checksum using the
    // polynomial represented by the [Table]. Its Sum method will lay the
    // value out in big-endian byte order. The returned Hash32 also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/MoreExecutors.java

        executor.setThreadFactory(
            new ThreadFactoryBuilder()
                .setDaemon(true)
                .setThreadFactory(executor.getThreadFactory())
                .build());
      }
    
      /**
       * Creates an executor service that runs each task in the thread that invokes {@code
       * execute/submit}, as in {@code ThreadPoolExecutor.CallerRunsPolicy}. This applies both to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/FileZipInput.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Enumeration;
    import java.util.Iterator;
    import java.util.zip.ZipFile;
    
    public class FileZipInput implements ZipInput {
    
        /**
         * Creates a stream of the entries in the given zip file. Caller is responsible for closing the return value.
         *
         * @throws FileException on failure to open the Zip
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. pkg/volume/hostpath/host_path.go

    type hostPathProvisioner struct {
    	host     volume.VolumeHost
    	options  volume.VolumeOptions
    	plugin   *hostPathPlugin
    	basePath string
    }
    
    // Create for hostPath simply creates a local /tmp/%/%s directory as a new PersistentVolume, default /tmp/hostpath_pv/%s.
    // This Provisioner is meant for development and testing only and WILL NOT WORK in a multi-node cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

                new ClasspathWalker(TestFiles.fileSystem()),
                new DefaultClasspathBuilder(TestFiles.tmpDirTemporaryFileProvider(tmpDir.createDir("tmp")))
            )
        }
    
        def "creates JAR file for input directory"() {
            given:
            def inputFilesDir = tmpDir.createDir('inputFiles')
            writeClass(inputFilesDir, "org/gradle/MyClass")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

                result = result.plus(rest[i]);
            }
            return result.plus(second).plus(first);
        }
    
        @Override
        public abstract void forEach(Consumer<? super T> consumer);
    
        /**
         * Creates a new list with the given element as the first element in the list.
         *
         * So {@code (b : c).plus(a) == (a : b : c)}
         */
        @CheckReturnValue
        public abstract PersistentList<T> plus(T element);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. pkg/kube/krt/index.go

    func NewNamespaceIndex[I Namespacer](c Collection[I]) *Index[I, string] {
    	return NewIndex(c, func(o I) []string {
    		return []string{o.GetNamespace()}
    	})
    }
    
    // NewIndex creates a simple index, keyed by key K, over an informer for O. This is similar to
    // NewInformer.AddIndex, but is easier to use and can be added after an informer has already started.
    func NewIndex[I any, K comparable](
    	c Collection[I],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 04:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/patches/patches.go

    		KubeletConfiguration,
    		CoreDNSDeployment,
    	}
    )
    
    // KnownTargets returns the locally defined knownTargets.
    func KnownTargets() []string {
    	return knownTargets
    }
    
    // GetPatchManagerForPath creates a patch manager that can be used to apply patches to "knownTargets".
    // "path" should contain patches that can be used to patch the "knownTargets".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_pod_control.go

    	recorder record.EventRecorder,
    ) *StatefulPodControl {
    	return &StatefulPodControl{&realStatefulPodControlObjectManager{client, podLister, claimLister}, recorder}
    }
    
    // NewStatefulPodControlFromManager creates a StatefulPodControl using the given StatefulPodControlObjectManager and recorder.
    func NewStatefulPodControlFromManager(om StatefulPodControlObjectManager, recorder record.EventRecorder) *StatefulPodControl {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. pkg/kubelet/metrics/collectors/volume_stats.go

    	statsProvider serverstats.Provider
    }
    
    // Check if volumeStatsCollector implements necessary interface
    var _ metrics.StableCollector = &volumeStatsCollector{}
    
    // NewVolumeStatsCollector creates a volume stats metrics.StableCollector.
    func NewVolumeStatsCollector(statsProvider serverstats.Provider) metrics.StableCollector {
    	return &volumeStatsCollector{statsProvider: statsProvider}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top