Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 517 for inactive (0.13 sec)

  1. maven-core/src/test/resources-project-builder/plugin-interpolation-build/pom.xml

                    <id>Inactive only ||${project.basedir}||</id>
                    <configuration>
                      <plugin-in-inactive-only>Inactive only ||${project.basedir}||</plugin-in-inactive-only>
                    </configuration>
                  </execution>
                </executions>
              </plugin>
            </plugins>
          </build>
        </profile>
    
      </profiles>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 10:26:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-interpolation-reporting/pom.xml

                    <id>Inactive only ||${project.basedir}||</id>
                    <configuration>
                      <plugin-in-inactive-only>Inactive only ||${project.basedir}||</plugin-in-inactive-only>
                    </configuration>
                  </reportSet>
                </reportSets>
              </plugin>
            </plugins>
          </reporting>
        </profile>
    
      </profiles>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 10:26:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MemInfoOsMemoryInfoTest.groovy

    MemFree:        15953088 kB
    Buffers:          267852 kB
    Cached:         14152476 kB
    SwapCached:            0 kB
    Active:         17791108 kB
    Inactive:       13818288 kB
    Active(anon):   17189920 kB
    Inactive(anon):      460 kB
    Active(file):     601188 kB
    Inactive(file): 13817828 kB
    Unevictable:           0 kB
    Mlocked:               0 kB
    SwapTotal:             0 kB
    SwapFree:              0 kB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

        }
    
        /**
         * @return Required inactive profile identifiers, never {@code null}.
         */
        public Set<String> getRequiredInactiveProfileIds() {
            return getProfileIds(pa -> !pa.optional && !pa.active);
        }
    
        /**
         * @return Optional inactive profile identifiers, never {@code null}.
         */
        public Set<String> getOptionalInactiveProfileIds() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

    CU_EXPORT void CU_set_fail_on_inactive(CU_BOOL new_inactive);
    /**<
     *  Sets whether an inactive suite or test is treated as a failure.
     *  If CU_TRUE, then failure records will be generated for inactive 
     *  suites or tests encountered during a test run.  The default is 
     *  CU_TRUE so that the client is reminded that the framewrork 
     *  contains inactive suites/tests.  Set to CU_FALSE to turn off 
     *  this behavior.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. .github/workflows/stale-issues.yml

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ============================================================================
    
    name: Close inactive issues
    on:
      schedule:
        - cron: "30 1 * * *"
    
    permissions:
      contents: read
    
    jobs:
      close-issues:
        # Don't do this in forks
        if: github.repository == 'tensorflow/tensorflow'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 23 20:04:38 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java

        }
    
        /**
         * @return Required inactive project selectors, never {@code null}.
         */
        public Set<String> getRequiredInactiveProjectSelectors() {
            return getProjectSelectors(pa -> !pa.optional && !pa.active);
        }
    
        /**
         * @return Optional inactive project selectors, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/kubelet/kubelet.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/initsystem"
    )
    
    // TryStartKubelet attempts to bring up kubelet service
    func TryStartKubelet() {
    	// If we notice that the kubelet service is inactive, try to start it
    	initSystem, err := initsystem.GetInitSystem()
    	if err != nil {
    		fmt.Println("[kubelet-start] No supported init system detected, won't make sure the kubelet is running properly.")
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 15 16:01:35 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/JobHelper.java

                throw new ScheduledJobException("No job.");
            }
    
            final String id = scheduledJob.getId();
            if (!Constants.T.equals(scheduledJob.getAvailable())) {
                logger.info("Inactive Job {}:{}", id, scheduledJob.getName());
                try {
                    unregister(scheduledJob);
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. releasenotes/notes/deferred_cluster_creation.yaml

    area: traffic-management
    
    releaseNotes:
    - |
      **Added** an experimental feature to enable cluster creation on worker threads inline during requests.
      This will save memory and CPU cycles in cases where there are lots of inactive clusters and > 1 worker thread.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 402 bytes
    - Viewed (0)
Back to top