Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 423 for Bind (0.24 sec)

  1. cmd/iam.go

    			continue
    		}
    
    		// Check if this is the first time we are
    		// encountering this LDAP user.
    		if _, ok := parentUserToCredsMap[cred.ParentUser]; !ok {
    			// Try to find the ldapUsername for this
    			// parentUser by extracting JWT claims
    			var (
    				jwtClaims *jwt.MapClaims
    				err       error
    			)
    
    			if cred.SessionToken == "" {
    				continue
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/options_test.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    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 options
    
    import (
    	"fmt"
    	"reflect"
    	"sort"
    	"strings"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * 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.ldap;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # 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.
    
    KUBE_VERBOSE=${KUBE_VERBOSE:-1}
    if (( KUBE_VERBOSE > 4 )); then
      set -x
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/proxier.go

    		}
    
    		if nodeIP.IsUnspecified() {
    			// attempt to get the correct ip address
    			klog.V(2).InfoS("Node ip was unspecified, attempting to find node ip")
    			nodeIP, err = apiutil.ResolveBindAddress(nodeIP)
    			if err != nil {
    				klog.InfoS("Failed to find an ip. You may need set the --bind-address flag", "err", err)
    			}
    		}
    
    		interfaces, _ := net.Interfaces() //TODO create interfaces
    		for _, inter := range interfaces {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func error_accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {
    	fd = -1
    	err = ENOSYS
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS___BIND_A<<4, uintptr(s), uintptr(addr), uintptr(addrlen))
    	runtime.ExitSyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

        Predicate::Kind kind = pred->kind();
    
        if (kind == Predicate::Kind::kAnd || kind == Predicate::Kind::kOr) {
          std::vector<Predicate*> new_operands;
          absl::c_transform(pred->GetOperands(), std::back_inserter(new_operands),
                            [&](Predicate* p) { return MakeNotPredicate(p); });
          return kind == Predicate::Kind::kOr ? MakeAndPredicate(new_operands)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. pkg/controller/disruption/disruption_test.go

    			apiResources: []metav1.APIResource{
    				{
    					Kind: customGVK.Kind,
    					Name: resourceName,
    				},
    				{
    					Kind: customGVK.Kind,
    					Name: resourceName + "/scale",
    				},
    			},
    			expectError: true,
    		},
    		"resource does not implement scale": {
    			apiResources: []metav1.APIResource{
    				{
    					Kind: customGVK.Kind,
    					Name: resourceName,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    				continue
    			}
    			error_(f.NamePos[n], "could not determine kind of name for C.%s", fixGo(n.Go))
    		case notStrLiteral | notType:
    			n.Kind = "iconst"
    		case notIntConst | notStrLiteral | notType:
    			n.Kind = "fconst"
    		case notIntConst | notNumConst | notType:
    			n.Kind = "sconst"
    		case notIntConst | notNumConst | notStrLiteral:
    			n.Kind = "type"
    		case notIntConst | notNumConst | notStrLiteral | notType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. src/reflect/type.go

    		return T == V
    	}
    
    	if nameFor(T) != nameFor(V) || T.Kind() != V.Kind() || pkgPathFor(T) != pkgPathFor(V) {
    		return false
    	}
    
    	return haveIdenticalUnderlyingType(T, V, false)
    }
    
    func haveIdenticalUnderlyingType(T, V *abi.Type, cmpTags bool) bool {
    	if T == V {
    		return true
    	}
    
    	kind := Kind(T.Kind())
    	if kind != Kind(V.Kind()) {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top