Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for s_param (0.16 sec)

  1. docs/de/docs/tutorial/dependencies/dependencies-with-yield.md

    !!! tip "Tipp"
    
        Darüber hinaus handelt es sich bei einem Hintergrundtask normalerweise um einen unabhängigen Satz von Logik, der separat behandelt werden sollte, mit eigenen Ressourcen (z. B. einer eigenen Datenbankverbindung).
    
        Auf diese Weise erhalten Sie wahrscheinlich saubereren Code.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:29 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. src/crypto/tls/tls.go

    	}
    
    	return cert, nil
    }
    
    // Attempt to parse the given private key DER block. OpenSSL 0.9.8 generates
    // PKCS #1 private keys by default, while OpenSSL 1.0.0 generates PKCS #8 keys.
    // OpenSSL ecparam generates SEC1 EC private keys for ECDSA. We try all three.
    func parsePrivateKey(der []byte) (crypto.PrivateKey, error) {
    	if key, err := x509.ParsePKCS1PrivateKey(der); err == nil {
    		return key, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    	createEndpointSlice(t, c, name, name, namespace, ports, ips)
    }
    
    // nolint: unparam
    func createEndpointSlice(t *testing.T, c kubernetes.Interface, name, serviceName, namespace string, ports []v1.EndpointPort, addrs []string) {
    	createEndpointSliceWithType(t, c, name, serviceName, namespace, ports, addrs, discovery.AddressTypeIPv4)
    }
    
    // nolint: unparam
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. pilot/pkg/xds/workload_test.go

    	pod := mkPod(name, sa, ip, node)
    	pods := clienttest.NewWriter[*corev1.Pod](s.T(), s.KubeClient())
    	pods.CreateOrUpdate(pod)
    	pods.UpdateStatus(pod)
    }
    
    // nolint: unparam
    func createService(s *xds.FakeDiscoveryServer, name, namespace string, selector map[string]string) {
    	service := &corev1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      name,
    			Namespace: namespace,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds_test.go

    		}
    	})
    }
    
    // newEndpointWithAccount is a helper for IstioEndpoint creation. Creates endpoints with
    // port name "http", with the given IP, service account and a 'version' label.
    // nolint: unparam
    func newEndpointWithAccount(ip, account, version string) []*model.IstioEndpoint {
    	return []*model.IstioEndpoint{
    		{
    			Address:         ip,
    			ServicePortName: "http-main",
    			EndpointPort:    80,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-generate_test.go

    				}
    				if diff != "" {
    					t.Fatalf("%s: got:\n%s\nwant:\n%s\n(-got, +want)\n%s\n", tt.desc, "", "", diff)
    				}
    				t.Fatalf(cmp.Diff(got, want))
    			}
    		})
    	}
    }
    
    // nolint: unparam
    func generateManifest(inFile, flags string, chartSource chartSourceType, fileSelect []string) (string, object.K8sObjects, error) {
    	inPath := filepath.Join(testDataDir, "input", inFile+".yaml")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * of <tt>FILE_SHARE_READ</tt>, <tt>FILE_SHARE_WRITE</tt>, and
     * <tt>FILE_SHARE_DELETE</tt> logically OR'd together.
     *
     * @param   context A URL string
     * @param   name A path string relative to the <code>context</code> paremeter
     * @param   auth The credentials the client should use for authentication
     * @param   shareAccess Specifies what access other clients have while this file is open.
     * @throws  MalformedURLException
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	}
    }
    
    // just overwrites the labels
    // nolint: unparam
    func (s *ambientTestServer) labelPod(t *testing.T, name, ns string, labels map[string]string) {
    	t.Helper()
    
    	p := s.pc.Get(name, ns)
    	if p == nil {
    		return
    	}
    	p.ObjectMeta.Labels = labels
    	s.pc.Update(p)
    }
    
    // just overwrites the labels
    // nolint: unparam
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent.go

    //
    // TODO: evaluate replacing the STS server with a file data source, to simplify Envoy config
    // TODO: Fix this method with unused return value
    // nolint: unparam
    func (a *Agent) getWorkloadCerts(st *cache.SecretManagerClient) (sk *security.SecretItem, err error) {
    	b := backoff.NewExponentialBackOff(backoff.DefaultOption())
    	// This will loop forever until success
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/named.go

    		// (for example, in recursive type declarations).
    		assert(check != nil)
    	}
    
    	if orig.tparams.Len() != targs.Len() {
    		// Mismatching arg and tparam length may be checked elsewhere.
    		return Typ[Invalid]
    	}
    
    	// Ensure that an instance is recorded before substituting, so that we
    	// resolve n for any recursive references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top