Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,044 for _this9 (0.13 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        /**
         * Returns true if a public value of this type can potentially be null. This means this type is not a subtype of [Any]. However, it does not
         * mean one can assign `null` to a variable of this type because it may be unknown if this type can accept `null`. For example, a public value
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFilePropertyFactory.java

                }
            }
    
            @Override
            public THIS value(@Nullable T value) {
                super.value(value);
                return Cast.uncheckedNonnullCast(this);
            }
    
            @Override
            public THIS value(Provider<? extends T> provider) {
                super.value(provider);
                return Cast.uncheckedNonnullCast(this);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

        ) {
            this.javaCommand = execHandleFactory.newJavaExec();
            this.javaCommand.setExecutable(Jvm.current().getJavaExecutable());
            this.server = server;
            this.idGenerator = idGenerator;
            this.workerImplementationFactory = workerImplementationFactory;
            this.outputEventListener = outputEventListener;
            this.memoryManager = memoryManager;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/config/v1alpha1/defaults.go

    // PersistentVolumeBinderControllerConfiguration struct. This will set the recommended default
    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceRegistryBuilder.java

            this.displayName = displayName;
            return this;
        }
    
        public ServiceRegistryBuilder parent(ServiceRegistry parent) {
            this.parents.add(parent);
            return this;
        }
    
        public ServiceRegistryBuilder provider(ServiceRegistrationProvider provider) {
            this.providers.add(provider);
            return this;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            this.javaModuleVersion = objectFactory.property(String.class);
            this.javaModuleMainClass = objectFactory.property(String.class);
            this.generatedSourceOutputDirectory = objectFactory.directoryProperty();
            this.headerOutputDirectory = objectFactory.directoryProperty();
            this.release = objectFactory.property(Integer.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. releasenotes/notes/51081.yaml

    apiVersion: release-notes/v2
    
    # This YAML file describes the format for specifying a release notes entry for Istio.
    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 22:34:29 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelCache.java

            private final int hash;
    
            GavCacheKey(String groupId, String artifactId, String version, String tag) {
                this(gav(groupId, artifactId, version), tag);
            }
    
            GavCacheKey(String gav, String tag) {
                this.gav = gav;
                this.tag = tag;
                this.hash = Objects.hash(gav, tag);
            }
    
            private static String gav(String groupId, String artifactId, String version) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestResult.java

         * If the test failed with an exception, this will be the exception.  Some test frameworks do not fail without an
         * exception (JUnit), so in those cases this method will never return null.
         *
         * @return The exception, if any, logged for this test.  If none, a null is returned.
         */
        @Nullable
        Throwable getException();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/TestThread.java

        checkNotNull(arguments);
        assertEquals(false, invokeMethod("hasQueuedThread", this));
        sendRequest(methodName, arguments);
        Thread.sleep(DUE_DILIGENCE_MILLIS);
        assertEquals(true, invokeMethod("hasQueuedThread", this));
        assertNull(responseQueue.poll());
      }
    
      /**
       * Causes this thread to call the named method, and asserts that this thread thereby waits on the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top