Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 104 for outdirs (0.11 sec)

  1. docs/fr/docs/tutorial/background-tasks.md

    n'avez pas besoin que ces traitements aient lieu dans le même process (par exemple, pas besoin de partager la mémoire, les variables, etc.), il peut s'avérer profitable d'utiliser des outils plus importants tels que <a href="https://docs.celeryq.dev" class="external-link" target="_blank">Celery</a>.
    
    Ces outils nécessitent généralement des configurations plus complexes ainsi qu'un gestionnaire de queue de message, comme RabbitMQ ou Redis, mais ils permettent d'exécuter des tâches d'arrière-plan...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

            expect:
            builder.build() == ["-bootclasspath", "lib1.jar${File.pathSeparator}lib2.jar"] + defaultOptions
        }
    
        def "generates -extdirs option"() {
            spec.compileOptions.extensionDirs = "/dir1:/dir2"
    
            expect:
            builder.build() == ["-extdirs", "/dir1:/dir2"] + defaultOptions
        }
    
        def "generates -classpath option"() {
            def file1 = new File("/lib/lib1.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSetOutput.java

            if (builtBy != null) {
                this.builtBy(builtBy);
                this.dirs.builtBy(builtBy);
            }
        }
    
        @Override
        public FileCollection getDirs() {
            return dirs;
        }
    
        @Override
        public ConfigurableFileCollection getGeneratedSourcesDirs() {
            return generatedSourcesDirs;
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

      // Condition: the target equation except contracting dimension must match the
      // end of out equation.
      SmallVector<int64_t> out_dims;
      if (IsReducable(einsum_equation, dnums, is_lhs, out_dims)) {
        return CreateZeroPointPartialOffset(builder, loc, tensor, other_tensor_zp,
                                            out_dims);
      }
    
      Value reduced = builder.create<TF::EinsumOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. pkg/volume/projected/projected_test.go

    					"bar": []byte("bar"),
    				},
    			},
    			mode: 0644,
    			payload: map[string]util.FileProjection{
    				"path/to/foo.txt": {Data: []byte("foo"), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    			name: "subdirs",
    			mappings: []v1.KeyToPath{
    				{
    					Key:  "foo",
    					Path: "path/to/1/2/3/foo.txt",
    				},
    			},
    			secret: &v1.Secret{
    				Data: map[string][]byte{
    					"foo": []byte("foo"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  6. pkg/volume/util/atomic_writer_test.go

    			},
    			payload2: map[string]FileProjection{
    				"foo.txt": {Mode: 0644, Data: []byte("foo")},
    			},
    			expected: sets.New[string]("zip/bar.txt", "zip"),
    		},
    		{
    			name: "subdirs 1",
    			payload1: map[string]FileProjection{
    				"foo.txt":         {Mode: 0644, Data: []byte("foo")},
    				"zip/zap/bar.txt": {Mode: 0644, Data: []byte("zip/bar")},
    			},
    			payload2: map[string]FileProjection{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

                 * source files.
                 */
                if (Files.isDirectory(file)) {
                    Map<Path, String> names = new HashMap<>();
                    try (Stream<Path> subdirs = Files.list(file)) {
                        subdirs.filter(Files::isDirectory).forEach((subdir) -> {
                            Path mf = subdir.resolve(MODULE_INFO);
                            if (Files.isRegularFile(mf)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. pkg/volume/configmap/configmap_test.go

    					"bar": "bar",
    				},
    			},
    			mode: 0644,
    			payload: map[string]util.FileProjection{
    				"path/to/foo.txt": {Data: []byte("foo"), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    			name: "subdirs",
    			mappings: []v1.KeyToPath{
    				{
    					Key:  "foo",
    					Path: "path/to/1/2/3/foo.txt",
    				},
    			},
    			configMap: &v1.ConfigMap{
    				Data: map[string]string{
    					"foo": "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_volumes.go

    			errorPods++
    			klog.V(3).InfoS("Orphaned pod found, but volumes are not cleaned up", "podUID", uid)
    			continue
    		}
    
    		// Attempt to remove the pod volumes directory and its subdirs
    		podVolumeErrors := kl.removeOrphanedPodVolumeDirs(uid)
    		if len(podVolumeErrors) > 0 {
    			errorPods++
    			orphanVolumeErrors = append(orphanVolumeErrors, podVolumeErrors...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. pkg/volume/secret/secret_test.go

    					"bar": []byte("bar"),
    				},
    			},
    			mode: 0644,
    			payload: map[string]util.FileProjection{
    				"path/to/foo.txt": {Data: []byte("foo"), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    			name: "subdirs",
    			mappings: []v1.KeyToPath{
    				{
    					Key:  "foo",
    					Path: "path/to/1/2/3/foo.txt",
    				},
    			},
    			secret: &v1.Secret{
    				Data: map[string][]byte{
    					"foo": []byte("foo"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 19.5K bytes
    - Viewed (0)
Back to top