Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 614 for createfing (0.18 sec)

  1. cmd/kubeadm/app/cmd/phases/reset/cleanupnode_test.go

    				err := os.Mkdir(filepath.Join(tmpDir, createDir), 0700)
    				if err != nil {
    					t.Errorf("Unable to setup test config directory: %s", err)
    				}
    			}
    
    			for _, createFile := range test.setupFiles {
    				fullPath := filepath.Join(tmpDir, createFile)
    				f, err := os.Create(fullPath)
    				if err != nil {
    					t.Errorf("Unable to create test file: %s", err)
    				}
    				f.Close()
    			}
    
    			if test.resetDir == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. docs/en/docs/reference/testclient.md

    # Test Client - `TestClient`
    
    You can use the `TestClient` class to test FastAPI applications without creating an actual HTTP and socket connection, just communicating directly with the FastAPI code.
    
    Read more about it in the [FastAPI docs for Testing](https://fastapi.tiangolo.com/tutorial/testing/).
    
    You can import it directly from `fastapi.testclient`:
    
    ```python
    from fastapi.testclient import TestClient
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 450 bytes
    - Viewed (0)
  3. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

                }
            """
            def headerDir = file('src/main/headers')
            def src1 = file('src/main/cpp/app.cpp').createFile()
            def src2 = file('src/main/cpp/app-impl.cpp').createFile()
    
            when:
            def project = withConnection { connection -> connection.getModel(CppProject.class) }
    
            then:
            project.projectIdentifier.projectPath == ':'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

        }
    
        def "ignores jars which have the same prefix as an external module"() {
            given:
            distDir.createFile("dep-launcher-1.2.jar")
            distDir.createFile("dep-launcher-1.2-beta-3.jar")
            def registry = new DefaultModuleRegistry(classLoaderFor([]), ClassPath.EMPTY, new GradleInstallation(distDir))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/ArStaticLibraryArchiver.java

            public List<String> transform(StaticLibraryArchiverSpec spec) {
                List<String> args = new ArrayList<String>();
                // -r : Add files to static archive, creating if required
                // -c : Don't write message to standard error when creating archive
                // -s : Create an object file index (equivalent to running 'ranlib')
                args.add("-rcs");
                args.addAll(spec.getAllArgs());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/kotlin/producer/build.gradle.kts

    plugins {
        `java-library`
    }
    
    // tag::declare-outgoing-configuration[]
    val instrumentedJars by configurations.creating {
        isCanBeConsumed = true
        isCanBeResolved = false
        attributes {
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.LIBRARY))
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
            attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.EXTERNAL))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 927 bytes
    - Viewed (0)
  7. releasenotes/notes/sidecar-port-merge.yaml

    area: traffic-management
    releaseNotes:
    - |
      **Fixed** a bug when a Sidecar is resource is defined with multiple egress listeners with different ports 
      of a Kubernetes service, does not merge the ports correctly. This leads to creating only one Cluster with 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 348 bytes
    - Viewed (0)
  8. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/CollectionCodecs.kt

    
    val copyOnWriteArrayListCodec: Codec<CopyOnWriteArrayList<Any?>> = codec(
        { writeCollection(it) },
        {
            // Avoid the overhead of copying the underlying array for each inserted element
            // by creating the COW data structure from a list.
            CopyOnWriteArrayList(readList())
        }
    )
    
    
    val treeSetCodec: Codec<TreeSet<Any?>> = codec(
        {
            write(it.comparator())
            writeCollection(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_lowering_patterns.td

          "== mlir::BoolAttr::get($_builder.getContext(), true)">>;
    
    def IsNhwcLayoutOp: Constraint<Neg<IsNchwLayoutOp.predicate>>;
    
    // TODO(b/343278954): Move the creation of transposes to a separate prepare pass
    // to avoid creating multiple pattern-rewrite rules for the same composite op.
    def LegalizeTorchUpsampleBlinear2dComposite: Pat<
        (MHLO_CompositeOp:$old_val
        (variadic $input),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystem.java

            if (caseSensitive == null) {
    
                String content = generateUniqueContent();
                File file = null;
                try {
                    checkJavaIoTmpDirExists();
                    file = createFile(content);
                    caseSensitive = probeCaseSensitive(file, content);
                } catch (IOException e) {
                    throw new RuntimeException(e);
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top