Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for opldrr (0.18 sec)

  1. src/net/unixsock.go

    	default:
    		return nil, &OpError{Op: "dial", Net: network, Source: laddr.opAddr(), Addr: raddr.opAddr(), Err: UnknownNetworkError(network)}
    	}
    	sd := &sysDialer{network: network, address: raddr.String()}
    	c, err := sd.dialUnix(context.Background(), laddr, raddr)
    	if err != nil {
    		return nil, &OpError{Op: "dial", Net: network, Source: laddr.opAddr(), Addr: raddr.opAddr(), Err: err}
    	}
    	return c, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/net/udpsock.go

    	switch network {
    	case "udp", "udp4", "udp6":
    	default:
    		return nil, &OpError{Op: "dial", Net: network, Source: laddr.opAddr(), Addr: raddr.opAddr(), Err: UnknownNetworkError(network)}
    	}
    	if raddr == nil {
    		return nil, &OpError{Op: "dial", Net: network, Source: laddr.opAddr(), Addr: nil, Err: errMissingAddress}
    	}
    	sd := &sysDialer{network: network, address: raddr.String()}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. pkg/controller/deployment/deployment_controller.go

    	curRS := cur.(*apps.ReplicaSet)
    	oldRS := old.(*apps.ReplicaSet)
    	if curRS.ResourceVersion == oldRS.ResourceVersion {
    		// Periodic resync will send update events for all known replica sets.
    		// Two different versions of the same replica set will always have different RVs.
    		return
    	}
    
    	curControllerRef := metav1.GetControllerOf(curRS)
    	oldControllerRef := metav1.GetControllerOf(oldRS)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. pkg/controller/replication/conversion.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // This file contains adapters that convert between RC and RS,
    // as if ReplicationController were an older API version of ReplicaSet.
    // It allows ReplicaSetController to directly replace the old ReplicationManager,
    // which was previously a manually-maintained copy-paste of RSC.
    
    package replication
    
    import (
    	"context"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 18:43:33 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. internal/config/notify/legacy.go

    package notify
    
    import (
    	"fmt"
    	"strconv"
    	"strings"
    
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/event/target"
    )
    
    // SetNotifyKafka - helper for config migration from older config.
    func SetNotifyKafka(s config.Config, name string, cfg target.KafkaArgs) error {
    	if !cfg.Enable {
    		return nil
    	}
    
    	if err := cfg.Validate(); err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/net/tcpsock.go

    	switch network {
    	case "tcp", "tcp4", "tcp6":
    	default:
    		return nil, &OpError{Op: "dial", Net: network, Source: laddr.opAddr(), Addr: raddr.opAddr(), Err: UnknownNetworkError(network)}
    	}
    	if raddr == nil {
    		return nil, &OpError{Op: "dial", Net: network, Source: laddr.opAddr(), Addr: nil, Err: errMissingAddress}
    	}
    	sd := &sysDialer{network: network, address: raddr.String()}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set.go

    	oldRS := old.(*apps.ReplicaSet)
    	curRS := cur.(*apps.ReplicaSet)
    
    	// TODO: make a KEP and fix informers to always call the delete event handler on re-create
    	if curRS.UID != oldRS.UID {
    		key, err := controller.KeyFunc(oldRS)
    		if err != nil {
    			utilruntime.HandleError(fmt.Errorf("couldn't get key for object %#v: %v", oldRS, err))
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. pkg/controller/deployment/util/deployment_util_test.go

    	newRSDup.CreationTimestamp = now
    
    	oldDeployment := generateDeployment("nginx")
    	oldDeployment.Spec.Template.Spec.Containers[0].Name = "nginx-old-1"
    	oldRS := generateRS(oldDeployment)
    	oldRS.Status.FullyLabeledReplicas = *(oldRS.Spec.Replicas)
    	oldRS.CreationTimestamp = before
    
    	tests := []struct {
    		Name            string
    		deployment      apps.Deployment
    		rsList          []*apps.ReplicaSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	h, err := tlog.TreeHash(older.N, thr)
    	if err != nil {
    		if older.N == newer.N {
    			return fmt.Errorf("checking tree#%d: %v", older.N, err)
    		}
    		return fmt.Errorf("checking tree#%d against tree#%d: %v", older.N, newer.N, err)
    	}
    	if h == older.Hash {
    		return nil
    	}
    
    	// Detected a fork in the tree timeline.
    	// Start by reporting the inconsistent signed tree notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/nilcheck_test.go

    // TestNilcheckAddr verifies that nilchecks of OpAddr constructed values are removed.
    func TestNilcheckAddr(t *testing.T) {
    	c := testConfig(t)
    	ptrType := c.config.Types.BytePtr
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Goto("checkPtr")),
    		Bloc("checkPtr",
    			Valu("ptr1", OpAddr, ptrType, 0, nil, "sb"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top