Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for redirection (0.18 sec)

  1. src/reflect/type.go

    	// Bits returns the size of the type in bits.
    	// It panics if the type's Kind is not one of the
    	// sized or unsized Int, Uint, Float, or Complex kinds.
    	Bits() int
    
    	// ChanDir returns a channel type's direction.
    	// It panics if the type's Kind is not Chan.
    	ChanDir() ChanDir
    
    	// IsVariadic reports whether a function type's final input parameter
    	// is a "..." parameter. If so, t.In(t.NumIn() - 1) returns the parameter's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

    import org.codelibs.fess.exception.LdapConfigurationException;
    import org.codelibs.fess.exception.LdapOperationException;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.OptionalUtil;
    import org.dbflute.optional.OptionalEntity;
    import org.dbflute.util.DfTypeUtil;
    
    public class LdapManager {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    		FQDN: host.Name(svcHost),
    		Port: int(port),
    		// Although we want inbound traffic, ask for outbound traffic, as the DR is
    		// not associated with the inbound traffic.
    		Direction: model.TrafficDirectionOutbound,
    	}
    
    	dump, err := cd.GetClusterConfigDump()
    	if err != nil {
    		return "", err
    	}
    
    	for _, dac := range dump.DynamicActiveClusters {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

    import org.codelibs.fess.exception.SearchQueryException;
    import org.codelibs.fess.helper.DocumentHelper;
    import org.codelibs.fess.helper.QueryHelper;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.query.QueryFieldConfig;
    import org.codelibs.fess.util.BooleanFunction;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.DocMap;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.direction;
    
    import static org.codelibs.core.stream.StreamUtil.split;
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.net.Authenticator;
    import java.net.InetSocketAddress;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    // Note that writing to or reading from this connection directly will corrupt the
    // TLS session.
    func (c *Conn) NetConn() net.Conn {
    	return c.conn
    }
    
    // A halfConn represents one direction of the record layer
    // connection, either sending or receiving.
    type halfConn struct {
    	sync.Mutex
    
    	err     error  // first permanent error
    	version uint16 // protocol version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal_test.go

    	},
    	{
    		ExpectXML: `<NestedAndCData><A><B></B><B></B></A><![CDATA[test]]></NestedAndCData>`,
    		Value:     &NestedAndCData{AB: make([]string, 2), CDATA: "test"},
    	},
    	// Test pointer indirection in various kinds of fields.
    	// https://golang.org/issue/19063
    	{
    		ExpectXML:   `<IndirComment><T1></T1><!--hi--><T2></T2></IndirComment>`,
    		Value:       &IndirComment{Comment: stringptr("hi")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    	} else {
    		addRestrictions(b, ft, d, iv.ind, iv.max, lt|eq)
    	}
    }
    
    // addBranchRestrictions updates the factsTables ft with the facts learned when
    // branching from Block b in direction br.
    func addBranchRestrictions(ft *factsTable, b *Block, br branch) {
    	c := b.Controls[0]
    	switch {
    	case br == negative:
    		addRestrictions(b, ft, boolean, nil, c, eq)
    	case br == positive:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    	// 	if x.mode == invalid {
    	// 		goto Error
    	// 	}
    
    	case *syntax.Operation:
    		if e.Y == nil {
    			// unary expression
    			if e.Op == syntax.Mul {
    				// pointer indirection
    				check.exprOrType(x, e.X, false)
    				switch x.mode {
    				case invalid:
    					goto Error
    				case typexpr:
    					check.validVarType(e.X, x.typ)
    					x.typ = &Pointer{base: x.typ}
    				default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * Task execution headers are printed with a "> Task" prefix.
     * All output produced during build execution is written to the standard output file handle. This includes messages written to System.err unless you are redirecting standard error to a file or any other non-console destination.
    
    This may break tools that scrape details from the plain console output.
    
    [[rel:4.6:native_task_api_changes]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top