Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for IsEmbedded (0.25 sec)

  1. src/runtime/type.go

    				return false
    			}
    			if tf.Name.Tag() != vf.Name.Tag() {
    				return false
    			}
    			if tf.Offset != vf.Offset {
    				return false
    			}
    			if tf.Name.IsEmbedded() != vf.Name.IsEmbedded() {
    				return false
    			}
    		}
    		return true
    	default:
    		println("runtime: impossible type kind", kind)
    		throw("runtime: impossible type kind")
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/preconditions/IntegTestPreconditions.groovy

            }
        }
    
        static final class IsEmbeddedExecutor implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
                return GradleContextualExecuter.isEmbedded()
            }
        }
    
        static final class NotEmbeddedExecutor implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
                return notSatisfied(IsEmbeddedExecutor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/internal/abi/type.go

    }
    
    // HasTag returns true iff there is tag data following this name
    func (n Name) HasTag() bool {
    	return (*n.Bytes)&(1<<1) != 0
    }
    
    // IsEmbedded returns true iff n is embedded (an anonymous field).
    func (n Name) IsEmbedded() bool {
    	return (*n.Bytes)&(1<<3) != 0
    }
    
    // ReadVarint parses a varint as encoded by encoding/binary.
    // It returns the number of encoded bytes and the encoded value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

            if (standardInput == null) {
                standardInput = SafeStreams.emptyInput();
            }
            if (Boolean.TRUE.equals(operationParameters.isEmbedded())) {
                loggingManager = sharedServices.getFactory(LoggingManagerInternal.class).create();
                loggingManager.captureSystemSources();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/go/doc/reader.go

    // reader.lookupType.
    type namedType struct {
    	doc  string       // doc comment for type
    	name string       // type name
    	decl *ast.GenDecl // nil if declaration hasn't been seen yet
    
    	isEmbedded bool        // true if this type is embedded
    	isStruct   bool        // true if this type is a struct
    	embedded   embeddedSet // true if the embedded type is a pointer
    
    	// associated declarations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            return "Unknown";
        }
    
        public void setupAdminHtmlData(final TypicalAction action, final ActionRuntime runtime) {
            runtime.registerData("developmentMode", ComponentUtil.getSearchEngineClient().isEmbedded());
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String installationLink = fessConfig.getOnlineHelpInstallation();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

            mapOf(
                "projectRoot" to projectRoot,
                "gradleUserHome" to buildContext.gradleUserHomeDir.canonicalPath
            ) + (
                if (GradleContextualExecuter.isEmbedded()) emptyMap() else mapOf("gradleHome" to distribution.gradleHomeDir)
                ) + entries.toMap()
    
        private
        fun resolvedScriptDependencies(
            scriptFile: File? = null,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

        /**
         * Only 'current->[some-version]' can run embedded.
         * If running '[other-version]->current' the other Gradle version does not know how to start Gradle from the embedded classpath.
         */
        boolean isEmbedded() {
            // Use in-process build when running tests in embedded mode and daemon is not required
            return GradleContextualExecuter.embedded && !requiresDaemon && GradleVersion.current() == dist.version
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    .name();
        }
    
        public void setRunner(final OpenSearchRunner runner) {
            this.runner = runner;
        }
    
        public boolean isEmbedded() {
            return this.runner != null;
        }
    
        public void usePipeline() {
            this.usePipeline = true;
        }
    
        protected InetAddress getInetAddressByName(final String host) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top