Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,496 for found$ (0.15 sec)

  1. src/cmd/cover/cover.go

    		return s.Lbrace
    	case *ast.IfStmt:
    		found, pos := hasFuncLiteral(s.Init)
    		if found {
    			return pos
    		}
    		found, pos = hasFuncLiteral(s.Cond)
    		if found {
    			return pos
    		}
    		return s.Body.Lbrace
    	case *ast.ForStmt:
    		found, pos := hasFuncLiteral(s.Init)
    		if found {
    			return pos
    		}
    		found, pos = hasFuncLiteral(s.Cond)
    		if found {
    			return pos
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. internal/config/identity/ldap/ldap.go

    // the attribute type names in the DN are lower-cased.
    //
    // Return values:
    //
    // If the DN is found, the normalized (string) value and any requested
    // attributes are returned and error is nil.
    //
    // If the DN is not found, a nil result and error are returned.
    //
    // The returned boolean is true iff the DN is found under one of the LDAP
    // subtrees listed in `baseDNList`.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption.go

    	allErrs := field.ErrorList{}
    	found := 0
    
    	if provider.KMS != nil {
    		found++
    	}
    	if provider.AESGCM != nil {
    		found++
    	}
    	if provider.AESCBC != nil {
    		found++
    	}
    	if provider.Secretbox != nil {
    		found++
    	}
    	if provider.Identity != nil {
    		found++
    	}
    
    	if found == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go

    			t.Errorf("unexpected 'to' annotation: %s", v)
    		}
    	}
    	if expectLabels {
    		if _, found := obj.GetLabels()["from"]; !found {
    			t.Errorf("expected 'from=stable.example.com.v1beta1' label")
    		}
    		if _, found := obj.GetLabels()["to"]; !found {
    			t.Errorf("expected 'to=stable.example.com.v1beta2' label")
    		}
    	} else {
    		if v, found := obj.GetLabels()["from"]; found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 47.1K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider_windows.go

    			continue
    		}
    
    		// only add the interface for each container if not already in the list
    		for _, cId := range endpoint.SharedContainers {
    			networkStat, found := networkStats[cId]
    			if found && networkStat.Name != endpoint.Name {
    				iStat := hcsStatToInterfaceStat(endpointStats, endpoint.Name)
    				networkStat.Interfaces = append(networkStat.Interfaces, iStat)
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. docs/site-replication/run-ssec-object-replication.sh

    	echo "BUG: object minio1/test-bucket/plainfile not found"
    	exit_1
    fi
    count2=$(./mc ls minio1/test-bucket/encrypted --insecure | wc -l)
    if [ "${count2}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/encrypted not found"
    	exit_1
    fi
    count3=$(./mc ls minio1/test-bucket/defpartsize --insecure | wc -l)
    if [ "${count3}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/defpartsize not found"
    	exit_1
    fi
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate_value.go

    	for inPath := range t.GatewayKubernetesMapping.IngressMapping {
    		_, found, err := tpath.GetPathContext(valuesOverlay, util.ToYAMLPath(inPath), false)
    		if err != nil {
    			scope.Debug(err.Error())
    			continue
    		}
    		if found {
    			deprecatedFields = append(deprecatedFields, inPath)
    		}
    	}
    	for inPath := range t.GatewayKubernetesMapping.EgressMapping {
    		_, found, err := tpath.GetPathContext(valuesOverlay, util.ToYAMLPath(inPath), false)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. src/cmd/doc/pkg.go

    	printed := make(map[*ast.GenDecl]bool) // valueDoc registry
    	for _, value := range values {
    		pkg.valueDoc(value, printed)
    		found = true
    	}
    	// Types.
    	for _, typ := range pkg.findTypes(symbol) {
    		pkg.typeDoc(typ)
    		found = true
    	}
    	if !found {
    		// See if there are methods.
    		if !pkg.printMethodDoc("", symbol) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. cmd/storage-rest_test.go

    	}
    
    	testCases := []struct {
    		volumeName string
    		objectName string
    		expectErr  bool
    	}{
    		{"foo", "myobject", false},
    		// file not found not returned
    		{"foo", "myobject", false},
    		// file not found not returned
    		{"foo", "yourobject", false},
    	}
    
    	for i, testCase := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/go/parser/short_test.go

    	// go.dev/issue/12437
    	`package p; var _ = struct { x int, /* ERROR "expected ';', found ','" */ }{};`,
    	`package p; var _ = struct { x int, /* ERROR "expected ';', found ','" */ y float }{};`,
    
    	// go.dev/issue/11611
    	`package p; type _ struct { int, } /* ERROR "expected 'IDENT', found '}'" */ ;`,
    	`package p; type _ struct { int, float } /* ERROR "expected type, found '}'" */ ;`,
    
    	// go.dev/issue/13475
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top