Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for Directories (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    define any number of components. Gradle does not define any components by default.
    
    For each component, Gradle defines a _source set_ for each language that the component can be built from. A source set is essentially just a set of source directories containing source files. For example, when you apply the `c` plugin and define a library called `helloworld`, Gradle will define, by default, a source set containing the C source files in the `src/helloworld/c` directory. It will use these source...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    			allPatternIsRoot = true
    		}
    	}
    
    	updateMatches := func(rs *Requirements, ld *loader) {
    		for _, m := range matches {
    			switch {
    			case m.IsLocal():
    				// Evaluate list of file system directories on first iteration.
    				if m.Dirs == nil {
    					matchModRoots := modRoots
    					if opts.MainModule != (module.Version{}) {
    						matchModRoots = []string{MainModules.ModRoot(opts.MainModule)}
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

                        implementation project(':b')
                    }
                }
    
                abstract class MakeGreen implements TransformAction<TransformParameters.None> {
                    // Make sure empty directories in the input are ignored, making the fingerprint empty.
                    @PathSensitive(PathSensitivity.RELATIVE)
                    @IgnoreEmptyDirectories
                    @InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/minio-dashboard.json

              "interval": "1m",
              "legendFormat": "[{{server}}]",
              "refId": "A"
            }
          ],
          "title": "Scanned Directories",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "description": "",
          "fieldConfig": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

      Configure-WindowsDefender
    }
    
    # Creates directories where other functions in this module will read and write
    # data.
    # Note: C:\tmp is required for running certain kubernetes tests.
    #       C:\var\log is used by kubelet to stored container logs and also
    #       hard-coded in the fluentd/stackdriver config for log collection.
    function Create-Directories {
      Log-Output "Creating ${env:K8S_DIR} and its subdirectories."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

     * There is still the issue of having to run the lifecycle in order to find all the compile source roots and resource
     * directories but I hope to take care of this during the Maven 4.0 release (jvz).
     * </p>
     */
    public class MavenProject implements Cloneable {
    
        private static final Logger LOGGER = LoggerFactory.getLogger(MavenProject.class);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		},
    		{
    			name:        "test List with multiple levels of directories and expect flattened result",
    			prefix:      "/pods/second/",
    			pred:        storage.Everything,
    			expectedOut: []example.Pod{*preset[1], *preset[2]},
    		},
    		{
    			name:        "test List with multiple levels of directories and expect flattened result with current resource version and match=NotOlderThan",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        # quantized models.
        self._output_saved_model_path_2 = self.create_tempdir('output2').full_path
    
      def _get_dir_size(self, path: str = '.'):
        """Get the total size of files and sub-directories under the path.
    
        Args:
          path: Path of a directory or a file to calculate the total size.
    
        Returns:
          Total size of the directory or a file.
        """
        total = 0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. pkg/volume/testing/testing.go

    		}
    	}
    	return []volume.VolumePlugin{&FakeVolumePlugin{PluginName: "fake-plugin"}}
    }
    
    // FakeVolumePlugin is useful for testing.  It tries to be a fully compliant
    // plugin, but all it does is make empty directories.
    // Use as:
    //
    //	volume.RegisterPlugin(&FakePlugin{"fake-name"})
    type FakeVolumePlugin struct {
    	sync.RWMutex
    	PluginName             string
    	Host                   volume.VolumeHost
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. cmd/erasure-healing_test.go

    	// can't be read properly will be deleted automatically and
    	// err is nil
    	if !isErrObjectNotFound(err) {
    		t.Fatal(err)
    	}
    }
    
    // Tests healing of empty directories
    func TestHealEmptyDirectoryErasure(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	nDisks := 16
    	fsDirs, err := getRandomDisks(nDisks)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
Back to top