Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for getPred (0.15 sec)

  1. pkg/config/analysis/msg/messages.yaml

        args:
          - name: portName
            type: string
          - name: port
            type: int
          - name: targetPort
            type: string
    
      # IST0119 RETIRED
      # IST0120 RETIRED
      # IST0121 RETIRED
      # IST0122 RETIRED
    
      - name: "NamespaceMultipleInjectionLabels"
        code: IST0123
        level: Warning
        description: "A namespace has more than one type of injection labels"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

                                        acc.getName().get() + ", " + acc.getRead().get() + ", " + acc.getWrite().get() + "}"
                                );
                                secondaryAccess.get().forEach(it -> {
                                    System.out.println("secondaryAccess { " +
                                            it.getName().get() + ", " + it.getRead().get() + ", " + it.getWrite().get() +
                                            "}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MBeanOsMemoryInfoTest.groovy

            def free = osMemoryInfo.getOsSnapshot().getPhysicalMemory().getFree()
    
            then:
            free == TEST_FREE_MEMORY
        }
    
        def "getFreePhysicalMemory fails when memory MBeans are #availability"() {
            given:
            def osMemoryInfo = createMemoryInfo(availability)
    
            when:
            osMemoryInfo.getOsSnapshot().getPhysicalMemory().getFree()
    
            then:
            thrown UnsupportedOperationException
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. pkg/filewatcher/worker.go

    			// work on a copy of the watchedFiles map, so that we don't interfere
    			// with the caller's use of the map
    			for path, ft := range wk.getTrackers() {
    				if ft.events == nil {
    					// tracker has been retired, skip it
    					continue
    				}
    
    				sum := getHashSum(path)
    				if !bytes.Equal(sum, ft.hash) {
    					ft.hash = sum
    
    					select {
    					case ft.events <- event:
    						// nothing to do
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultUserClassFilePermissions.java

        public DefaultUserClassFilePermissions(int unixNumeric) {
            read = isRead(unixNumeric);
            write = isWrite(unixNumeric);
            execute = isExecute(unixNumeric);
        }
    
        @Override
        public boolean getRead() {
            return read;
        }
    
        @Override
        public boolean getWrite() {
            return write;
        }
    
        @Override
        public boolean getExecute() {
            return execute;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * This package contains tests that should be geared towards general functionality of the
     * JUnit Platform and may or may not be specific to an engine.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 821 bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/integTest/groovy/org/gradle/process/internal/health/memory/DefaultOsMemoryInfoIntegrationTest.groovy

            then:
            notThrown UnsupportedOperationException
        }
    
        def "gets OS free memory on any system"() {
            when:
            new DefaultOsMemoryInfo().getOsSnapshot().getPhysicalMemory().getFree()
    
            then:
            notThrown UnsupportedOperationException
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "gets OS virtual memory on a Windows system"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StringConfigurationAttributesResolveIntegrationTest.groovy

                       }
                   }
                }
            '''
        }
    
        @Override
        String getDebug() {
            "attribute(buildType, 'debug')"
        }
    
        @Override
        String getFree() {
            "attribute(flavor, 'free')"
        }
    
        @Override
        String getRelease() {
            "attribute(buildType, 'release')"
        }
    
        @Override
        String getPaid() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultAvailableOsMemoryStatusAspect.java

        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        public long getTotal() {
            return total;
        }
    
        @Override
        public long getFree() {
            return free;
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/OsMemoryStatusAspect.java

             */
            long getTotal();
    
            /**
             * Get the free memory of this category in bytes.
             *
             * @return the free memory of this category in bytes
             */
            long getFree();
        }
    
        /**
         * Marker interface for unavailable memory information.
         *
         * <p>
         * This is used when a specific memory category is not available on the current platform.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top