Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 237 for embeddeds (0.14 sec)

  1. README.md

      quay.io/minio/minio server /data --console-address ":9001"
    ```
    
    The MinIO deployment starts using default root credentials `minioadmin:minioadmin`. You can test the deployment using the MinIO Console, an embedded
    object browser built into MinIO Server. Point a web browser running on the host machine to <http://127.0.0.1:9000> and log in with the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginCrossVersionSmokeTest.kt

                )
            }
        }
    
        @Test
        @Requires(
            IntegTestPreconditions.NotEmbeddedExecutor::class,
            reason = "Kotlin version leaks on the classpath when running embedded"
        )
        fun `can build plugin for oldest supported Kotlin language version using last published plugin`() {
    
            `can build plugin for oldest supported Kotlin language version`()
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/html/template/js.go

    		if pad {
    			buf.WriteByte(' ')
    		}
    		return buf.String()
    	}
    	return string(b)
    }
    
    // jsStrEscaper produces a string that can be included between quotes in
    // JavaScript source, in JavaScript embedded in an HTML5 <script> element,
    // or in an HTML5 event handler attribute such as onclick.
    func jsStrEscaper(args ...any) string {
    	s, t := stringify(args...)
    	if t == contentTypeJSStr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/ToolingApiGradleExecutor.java

            gradleConnector.forProjectDirectory(projectDir);
            gradleConnector.daemonMaxIdleTime(120, TimeUnit.SECONDS);
            gradleConnector.embedded(embedded);
            return gradleConnector;
        }
    
        private static class TaskExecutionProgressListener implements ProgressListener {
            private final List<BuildTask> tasks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/go/parser/short_test.go

    	`package p; type _ struct{ ( /* ERROR "cannot parenthesize embedded type" */ int) }`,
    	`package p; type _ struct{ ( /* ERROR "cannot parenthesize embedded type" */ []byte) }`,
    	`package p; type _ struct{ *( /* ERROR "cannot parenthesize embedded type" */ int) }`,
    	`package p; type _ struct{ *( /* ERROR "cannot parenthesize embedded type" */ []byte) }`,
    
    	// go.dev/issue/8656
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            isEnabled = false
        }
    }
    
    
    private
    fun IntegrationTest.setUpAgentIfNeeded(testType: TestType, executer: String) {
        if (executer == "embedded") {
            // Apply the instrumentation agent to the test process when running integration tests with embedded Gradle executer.
            jvmArgumentProviders.add(project.objects.newInstance<AgentsClasspathProvider>().apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/encoding/json/encode_test.go

    		},
    		want: `{"X":6}`,
    	}, {
    		// Unexported embedded field of non-struct type should not be serialized.
    		CaseName: Name("UnexportedEmbeddedInt"),
    		makeInput: func() any {
    			type (
    				myInt int
    				S     struct{ myInt }
    			)
    			return S{5}
    		},
    		want: `{}`,
    	}, {
    		// Exported embedded field of non-struct type should be serialized.
    		CaseName: Name("ExportedEmbeddedInt"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/size.go

    	{
    		methods := t.Methods()
    		sort.SliceStable(methods, func(i, j int) bool {
    			mi, mj := methods[i], methods[j]
    
    			// Sort embedded types by type name (if any).
    			if mi.Sym == nil && mj.Sym == nil {
    				return mi.Type.Sym().Less(mj.Type.Sym())
    			}
    
    			// Sort methods before embedded types.
    			if mi.Sym == nil || mj.Sym == nil {
    				return mi.Sym != nil
    			}
    
    			// Sort methods by symbol name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/site/xdoc/maven-deps.odg

    Maven 4 API sisu plexus inject guice plexus core distribution sec-dispatcher commons-cli utils plugin-api artifact embedder settings-builder model-builder model cipher interpolation wagon-provider-api classworlds repository-metadata settings resolver api spi impl util resolver-provider builder-support jansi slf4j-api shared-utils slf4j-provider bom toolchain-builder toolchain-model meta di xml model plugin toolchain core spi xml-impl xml settings jline3 compat slf4j-wrapper jline woodstox api-impl...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 24 16:01:00 UTC 2024
    - 37K bytes
    - Viewed (0)
  10. pkg/api/testing/serialization_test.go

    		if info.StreamSerializer == nil {
    			continue
    		}
    		s := info.StreamSerializer
    		framer := s.Framer
    		embedded := info.Serializer
    		if embedded == nil {
    			t.Errorf("no embedded serializer for %s", info.MediaType)
    			continue
    		}
    		innerDecode := legacyscheme.Codecs.DecoderToVersion(embedded, api.SchemeGroupVersion)
    
    		// write a single object through the framer and back out
    		obj := &bytes.Buffer{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top