Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 257 for exporters (0.17 sec)

  1. src/go/doc/reader.go

    		}
    		if typ := r.lookupType(recvTypeName); typ != nil {
    			typ.methods.set(fun, r.mode&PreserveAST != 0)
    		}
    		// otherwise ignore the method
    		// TODO(gri): There may be exported methods of non-exported types
    		// that can be called because of exported values (consts, vars, or
    		// function results) of that type. Could determine if that is the
    		// case and then show those methods in an appropriate section.
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. pkg/workloadapi/security/authorization.pb.go

    		file_workloadapi_security_authorization_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
    			switch v := v.(*Authorization); i {
    			case 0:
    				return &v.state
    			case 1:
    				return &v.sizeCache
    			case 2:
    				return &v.unknownFields
    			default:
    				return nil
    			}
    		}
    		file_workloadapi_security_authorization_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        sizeBytes: 102319441
      - names:
        - gcr.io/google_containers/kube-proxy:v1.11.10-gke.5
        - registry.k8s.io/kube-proxy:v1.11.10-gke.5
        sizeBytes: 102279340
      - names:
        - registry.k8s.io/event-exporter@sha256:7f9cd7cb04d6959b0aa960727d04fa86759008048c785397b7b0d9dff0007516
        - registry.k8s.io/event-exporter:v0.2.3
        sizeBytes: 94171943
      - names:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller.go

    	// Add the ServiceExport info.
    	for _, se := range c.exports.ExportedServices() {
    		mcsService := outMap[se.namespacedName]
    		mcsService.Cluster = c.Cluster()
    		mcsService.Name = se.namespacedName.Name
    		mcsService.Namespace = se.namespacedName.Namespace
    		mcsService.Exported = true
    		mcsService.Discoverability = se.discoverability
    		outMap[se.namespacedName] = mcsService
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

         * }
         *
         * test {
         *     useTestNG() {
         *         // creates emailable HTML file
         *         // this reporter typically ships with TestNG library
         *         listeners << 'org.testng.reporters.EmailableReporter'
         *     }
         * }
         * </pre>
         */
        @Internal
        public Set<String> getListeners() {
            return listeners;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        sizeBytes: 102319441
      - names:
        - gcr.io/google_containers/kube-proxy:v1.11.10-gke.5
        - registry.k8s.io/kube-proxy:v1.11.10-gke.5
        sizeBytes: 102279340
      - names:
        - registry.k8s.io/event-exporter@sha256:7f9cd7cb04d6959b0aa960727d04fa86759008048c785397b7b0d9dff0007516
        - registry.k8s.io/event-exporter:v0.2.3
        sizeBytes: 94171943
      - names:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. pkg/test/echo/proto/echo.pb.go

    		file_test_echo_proto_echo_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
    			switch v := v.(*EchoRequest); i {
    			case 0:
    				return &v.state
    			case 1:
    				return &v.sizeCache
    			case 2:
    				return &v.unknownFields
    			default:
    				return nil
    			}
    		}
    		file_test_echo_proto_echo_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/gcimporter_test.go

    			// explicitly imported by testfile, plus all packages
    			// referenced indirectly via exported objects in testfile.
    			got := fmt.Sprint(pkg.Imports())
    			for _, want := range wantImports {
    				if !strings.Contains(got, want) {
    					t.Errorf(`Package("exports").Imports() = %s, does not contain %s`, got, want)
    				}
    			}
    		}
    	}
    }
    
    func TestImportTypeparamTests(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/encoding/json/encode_test.go

    		// themselves are exported.
    		CaseName: Name("EmbeddedStruct"),
    		makeInput: func() any {
    			type (
    				s1 struct{ x, X int }
    				S2 struct{ y, Y int }
    				S  struct {
    					s1
    					S2
    				}
    			)
    			return S{s1{1, 2}, S2{3, 4}}
    		},
    		want: `{"X":2,"Y":4}`,
    	}, {
    		// Exported fields of pointers to embedded structs should have their
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  10. pkg/apis/rbac/validation/validation.go

    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/kubernetes/pkg/apis/core/validation"
    	"k8s.io/kubernetes/pkg/apis/rbac"
    )
    
    // ValidateRBACName is exported to allow types outside of the RBAC API group to reuse this validation logic
    // Minimal validation of names for roles and bindings. Identical to the validation for Openshift. See:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:48:21 UTC 2022
    - 10.4K bytes
    - Viewed (0)
Back to top