Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 108 for isActive (0.3 sec)

  1. internal/event/targetlist.go

    	// The maximum allowed number of concurrent Send() calls to all configured notifications targets
    	maxConcurrentAsyncSend = 50000
    )
    
    // Target - event target interface
    type Target interface {
    	ID() TargetID
    	IsActive() (bool, error)
    	Save(Event) error
    	SendFromStore(store.Key) error
    	Close() error
    	Store() TargetStore
    }
    
    // TargetStore is a shallow version of a target.Store
    type TargetStore interface {
    	Len() int
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-interpolation-build/pom.xml

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

                    </configuration>
                  </reportSet>
                </reportSets>
              </plugin>
              <plugin>
                <artifactId>only-inactive-profile</artifactId>
                <reportSets>
                  <reportSet>
                    <id>Inactive only ||${project.basedir}||</id>
                    <configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 10:26:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. 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
    Dirty:                20 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)
  5. maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

            getActiveProfiles().forEach(this.activations::remove);
            activeProfileIds.forEach(this::activateOptionalProfile);
        }
    
        /**
         * Overwrites the inactive profiles based on a pre-Maven 4 "inactive profiles" list.
         * @param inactiveProfileIds A {@link List} of profile IDs that must be deactivated.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.6K 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. docs_src/sql_databases_peewee/sql_app/models.py

    import peewee
    
    from .database import db
    
    
    class User(peewee.Model):
        email = peewee.CharField(unique=True, index=True)
        hashed_password = peewee.CharField()
        is_active = peewee.BooleanField(default=True)
    
        class Meta:
            database = db
    
    
    class Item(peewee.Model):
        title = peewee.CharField(index=True)
        description = peewee.CharField(index=True)
        owner = peewee.ForeignKeyField(User, backref="items")
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 465 bytes
    - Viewed (0)
  10. docs_src/sql_databases/sql_app_py310/schemas.py

        class Config:
            orm_mode = True
    
    
    class UserBase(BaseModel):
        email: str
    
    
    class UserCreate(UserBase):
        password: str
    
    
    class User(UserBase):
        id: int
        is_active: bool
        items: list[Item] = []
    
        class Config:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 464 bytes
    - Viewed (0)
Back to top