Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for internalOs (0.19 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    org.gradle.internal.declarativedsl.provider.DeclarativeDslServices...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 67 bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    org.gradle.caching.http.internal.HttpBuildCacheServiceServices...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 63 bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    org.gradle.api.internal.tasks.testing.TestingBasePluginServices...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 64 bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    org.gradle.buildinit.plugins.internal.services.BuildInitServices...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 65 bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    org.gradle.internal.enterprise.impl.GradleEnterprisePluginServices
    org.gradle.internal.enterprise.test.impl.TestTaskPropertiesServices
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 190 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/compilersupport.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Helper functions exported for the compiler.
    // Do not use internally.
    
    package types2
    
    // If t is a pointer, AsPointer returns that type, otherwise it returns nil.
    func AsPointer(t Type) *Pointer {
    	u, _ := t.Underlying().(*Pointer)
    	return u
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 09 22:58:35 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. src/strconv/ctoa.go

    func FormatComplex(c complex128, fmt byte, prec, bitSize int) string {
    	if bitSize != 64 && bitSize != 128 {
    		panic("invalid bitSize")
    	}
    	bitSize >>= 1 // complex64 uses float32 internally
    
    	// Check if imaginary part has a sign. If not, add one.
    	im := FormatFloat(imag(c), fmt, prec, bitSize)
    	if im[0] != '+' && im[0] != '-' {
    		im = "+" + im
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/JdkIllegalReflectionTestWorkerIntegrationTest.groovy

    import spock.lang.Issue
    
    import static org.hamcrest.CoreMatchers.containsString
    
    /**
     * Ensures test behavior and actual application behavior are equivalent when
     * production code attempts to perform reflection on JDK internals.
     */
    class JdkIllegalReflectionTestWorkerIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            buildFile << """
                plugins {
                    id 'application'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/InvalidPluginException.java

     */
    package org.apache.maven.plugin;
    
    import org.apache.maven.project.ProjectBuildingException;
    import org.apache.maven.project.artifact.InvalidDependencyVersionException;
    
    /**
     * Thrown when a plugin is not internally consistent.
     *
     */
    public class InvalidPluginException extends Exception {
        public InvalidPluginException(String message, ProjectBuildingException e) {
            super(message, e);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPromise.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.core;
    
    import org.gradle.model.internal.type.ModelType;
    
    public interface ModelPromise {
    
        <T> boolean canBeViewedAs(ModelType<T> type);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top