Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 188 for fcclient (0.1 sec)

  1. pkg/volume/csi/expander.go

    	}
    
    	return c.nodeExpandWithClient(resizeOptions, csiSource, csClient, fsVolume)
    }
    
    func (c *csiPlugin) nodeExpandWithClient(
    	resizeOptions volume.NodeResizeOptions,
    	csiSource *api.CSIPersistentVolumeSource,
    	csClient csiClient,
    	fsVolume bool) (bool, error) {
    	driverName := csiSource.Driver
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/pruning_test.go

    	t.Logf("Creating CR and expect 'unspecified' fields to be pruned")
    	fooClient := dynamicClient.Resource(schema.GroupVersionResource{Group: crd.Spec.Group, Version: crd.Spec.Versions[0].Name, Resource: crd.Spec.Names.Plural})
    	foo := &unstructured.Unstructured{}
    	if err := yaml.Unmarshal([]byte(pruningFooInstance), &foo.Object); err != nil {
    		t.Fatal(err)
    	}
    	foo, err = fooClient.Create(context.TODO(), foo, metav1.CreateOptions{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    	foos, err := fooClient.List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, foo := range foos.Items {
    		mustExist(foo.Object, [][]string{{"spec", "a"}, {"spec", "b"}, {"spec", "c"}, {"status", "a"}, {"status", "b"}, {"status", "c"}})
    	}
    
    	t.Logf("verify LIST from cache sees 'c' in both status and spec")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/sumdb.go

    		}
    		base = u
    	}
    
    	return name, sumdb.NewClient(&dbClient{key: key[0], name: name, direct: direct, base: base}), nil
    }
    
    type dbClient struct {
    	key    string
    	name   string
    	direct *url.URL
    
    	once    sync.Once
    	base    *url.URL
    	baseErr error
    }
    
    func (c *dbClient) ReadRemote(path string) ([]byte, error) {
    	c.once.Do(c.initBase)
    	if c.baseErr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. security/pkg/pki/util/generate_cert_test.go

    				Org:         "MyOrg",
    			},
    		},
    		"RSA: Server and client cert with DNS SAN": {
    			certOptions: CertOptions{
    				Host:         "test_client.com",
    				NotBefore:    notBefore,
    				TTL:          ttl,
    				SignerCert:   rsaCaCert,
    				SignerPriv:   rsaCaPriv,
    				Org:          "",
    				IsCA:         false,
    				IsSelfSigned: false,
    				IsClient:     true,
    				IsServer:     true,
    				RSAKeySize:   2048,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 06 12:48:53 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  6. docs/extensions/s3zip/examples/minio-go/main.go

    )
    
    func main() {
    	s3Client, err := minio.New("minio-server-address:9000", &minio.Options{
    		Creds: credentials.NewStaticV4("access-key", "secret-key", ""),
    	})
    	if err != nil {
    		log.Fatalln(err)
    	}
    
    	var opts minio.GetObjectOptions
    
    	// Add extract header to request:
    	opts.Set("x-minio-extract", "true")
    
    	// Download API.md from the archive
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 14 18:04:14 UTC 2021
    - 694 bytes
    - Viewed (0)
  7. src/main/resources/esclient.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components>
    	<component name="searchEngineClient" class="org.codelibs.fess.es.client.SearchEngineClient">
    		<property name="settings">
    			{"http.cors.enabled":"true",
    			 "http.cors.allow-origin":"*",
    			 "discovery.type":"single-node",
    			 <!--
    			 "node.name":"search_engine",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 23 05:42:27 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. architecture/security/docs/ca.dot

    digraph {
        grpc -> ca [label="Send CSR gRPC Request"]
        subgraph cluster_istioagent {
            label = "Istio Agent"
            color="orange"
            sds
            SecretManager -> caClient [label="Sign CSR"]
            caClient -> grpc
            grpc -> TokenProvider [dir=none,label="Fetch JWT",color=purple]
            grpc -> cfiles [dir=none,label="Fetch Cert",color=purple]
    
            sds -> SecretManager [label="Generate certificate"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 00:43:58 UTC 2023
    - 674 bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

        val isMasked = b1 and B1_FLAG_MASK != 0
        if (isMasked == isClient) {
          // Masked payloads must be read on the server. Unmasked payloads must be read on the client.
          throw ProtocolException(
            if (isClient) {
              "Server-sent frames must not be masked."
            } else {
              "Client-sent frames must be masked."
            },
          )
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. pkg/security/apparmor/testdata/profiles

    docker-default (enforce)
    /usr/sbin/cups-browsed (enforce)
    /usr/sbin/cupsd (enforce)
    /usr/lib/cups/backend/cups-pdf (enforce)
    /usr/sbin/ntpd (enforce)
    /usr/lib/connman/scripts/dhclient-script (enforce)
    /usr/lib/NetworkManager/nm-dhcp-client.action (enforce)
    /sbin/dhclient (enforce)
    foo-container (complain)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 11 17:31:25 UTC 2016
    - 978 bytes
    - Viewed (0)
Back to top