Search Options

Results per page
Sort
Preferred Languages
Advance

Results 851 - 860 of 1,148 for afunction (0.09 sec)

  1. internal/grid/manager.go

    	ID uuid.UUID
    
    	// Immutable after creation, so no locks.
    	targets map[string]*Connection
    
    	// serverside handlers.
    	handlers handlers
    
    	// local host name.
    	local string
    
    	// authToken is a function that will validate a token.
    	authToken ValidateTokenFn
    
    	// routePath indicates the dial route path
    	routePath string
    }
    
    // ManagerOptions are options for creating a new grid manager.
    type ManagerOptions struct {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 29 18:10:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. architecture/ambient/ztunnel-cni-lifecycle.md

    Alternatively, we could send the GOAWAY prior to the pod termination (assuming this allows existing and new connections to function still).
    
    ## Ztunnel Shutdown/Upgrade/Restart
    
    This could be upgrading to a new version, or changing some part of the DaemonSet spec, etc.
    
    ### Ztunnel Shutdown Requirements
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jul 17 23:10:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_de.properties

    errors.design_file_is_unsupported_type=Die Dateiart wird nicht unterstützt.
    errors.failed_to_create_crawling_config_at_wizard=Erstellung der Crawling-Konfiguration fehlgeschlagen.
    errors.design_editor_disabled=Diese Funktion ist deaktiviert.
    errors.not_found_on_file_system=Nicht gefunden: {0}
    errors.could_not_open_on_system=Konnte {0} nicht öffnen. <br/>Bitte prüfen, ob die Datei mit einer Anwendung verknüpft ist.
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Oct 29 15:01:03 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/RegularImmutableMap.java

    import com.google.common.collect.ImmutableMapEntry.NonTerminalImmutableMapEntry;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.io.Serializable;
    import java.util.IdentityHashMap;
    import java.util.function.BiConsumer;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Implementation of {@link ImmutableMap} used for 0 entries and for 2+ entries. Additional
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. architecture/environments/operator.md

    The operator has a very similar structure to istio/installer: components are grouped into features.
    `IstioOperatorSpec` defines functional settings at the feature level. Functional settings are those that performs some
    function in the Istio control plane without necessarily being tied to any one component that runs in a Deployment.
    Component settings are those that necessarily refer to a particular Deployment or Service. For example, the number
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Jul 29 21:11:35 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. cni/pkg/install/install.go

    // sleepWatchInstall blocks until any file change for the binaries or config are detected.
    // At that point, the func yields so the caller can recheck the validity of the install.
    // If an error occurs or context is canceled, the function will return an error.
    func (in *Installer) sleepWatchInstall(ctx context.Context, installedBinFiles sets.String) error {
    	// Watch our specific binaries, in each configured binary dir.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Aug 09 21:33:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      }
    
      public <F extends Enum<F> & Function<String, Integer> & Iterable<Long>>
          void testResolveType_fromTypeVariable() {
        TypeToken<?> f = TypeToken.of(new TypeCapture<F>() {}.capture());
        assertEquals(String.class, f.resolveType(Function.class.getTypeParameters()[0]).getType());
        assertEquals(Integer.class, f.resolveType(Function.class.getTypeParameters()[1]).getType());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 21:13:09 UTC 2024
    - 89.1K bytes
    - Viewed (0)
  8. docs/site-replication/run-replication-with-checksum-header.sh

    	cat /tmp/minio2_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo -n "Cleaning up instances of MinIO ..."
    	pkill -9 minio || sudo pkill -9 minio
    	rm -rf /tmp/minio{1,2}
    	echo "done"
    }
    
    # Function to convert number to corresponding alphabet
    num_to_alpha() {
    	local num=$1
    	# ASCII value of 'a' is 97, so we add (num - 1) to 97 to get the corresponding alphabet
    	local ascii_value=$((96 + num))
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 29 08:02:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. docs/uk/docs/tutorial/first-steps.md

    Наприклад, під час використання GraphQL зазвичай усі дії виконуються тільки за допомогою `POST` операцій.
    
    ///
    
    ### Крок 4: визначте **функцію операції шляху (path operation function)**
    
    Ось "**функція операції шляху**":
    
    * **шлях**: це `/`.
    * **операція**: це `get`.
    * **функція**: це функція, яка знаходиться нижче "декоратора" (нижче `@app.get("/")`).
    
    ```Python hl_lines="7"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. gorm.go

    	// NamingStrategy tables, columns naming strategy
    	NamingStrategy schema.Namer
    	// FullSaveAssociations full save associations
    	FullSaveAssociations bool
    	// Logger
    	Logger logger.Interface
    	// NowFunc the function to be used when creating a new timestamp
    	NowFunc func() time.Time
    	// DryRun generate sql without execute
    	DryRun bool
    	// PrepareStmt executes the given query in cached statement
    	PrepareStmt bool
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Wed Oct 09 11:29:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top