Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for relu (0.1 sec)

  1. cmd/kubeadm/app/phases/addons/dns/dns.go

    	}
    
    	corefileMigrationRequired, err := isCoreDNSConfigMapMigrationRequired(corefile, currentInstalledCoreDNSVersion)
    	if err != nil {
    		return err
    	}
    
    	// Assume that migration is always possible, rely on migrateCoreDNSCorefile() to fail if not.
    	canMigrateCorefile := true
    
    	if corefile == "" || migration.Default("", corefile) {
    		// If the Corefile is empty or default, the latest default Corefile will be applied
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. internal/bucket/object/lock/lock.go

    )
    
    const (
    	ntpServerEnv = "MINIO_NTP_SERVER"
    )
    
    var ntpServer = env.Get(ntpServerEnv, "")
    
    // UTCNowNTP - is similar in functionality to UTCNow()
    // but only used when we do not wish to rely on system
    // time.
    func UTCNowNTP() (time.Time, error) {
    	// ntp server is disabled
    	if ntpServer == "" {
    		return time.Now().UTC(), nil
    	}
    	return ntp.Time(ntpServer)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. pkg/xds/server.go

    	// If there is an error in request that means previous response is erroneous.
    	// We do not have to respond in that case. In this case request's version info
    	// will be different from the version sent. But it is fragile to rely on that.
    	if request.ErrorDetail != nil {
    		errCode := codes.Code(request.ErrorDetail.Code)
    		log.Warnf("ADS:%s: ACK ERROR %s %s:%s", stype, id, errCode.String(), request.ErrorDetail.GetMessage())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    > a local machine without necessary parallelization and caching.
    > The full test suites are executed on the CI instance for multiple configurations,
    > and you can rely on it after doing initial sanity check and targeted local testing.
    
    ### Submitting Your Change
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. cmd/object-api-datatypes.go

    	if o.IsLatest {
    		ts.NumObjects = 1
    	}
    	return ts
    }
    
    // ToObjectInfo converts a replication object info to a partial ObjectInfo
    // do not rely on this function to give you correct ObjectInfo, this
    // function is merely and optimization.
    func (ri ReplicateObjectInfo) ToObjectInfo() ObjectInfo {
    	return ObjectInfo{
    		Name:                       ri.Name,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/quantize.mlir

      func.return %1 : tensor<1x1x1x16xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:10:13 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  7. cni/pkg/iptables/iptables.go

    	// (e.g. LoadBalanced Service packets, etc) that need to be authenticated/captured/proxied.
    	//
    	// We want to do the same thing in ambient but can't rely on podSpec injection. So, do effectively the same thing,
    	// but with iptables rules - use `--socket-exists` as a proxy for "is this a forwarded packet" vs "is this originating from
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. src/syscall/syscall_aix.go

    	}
    	if len(oob) > 0 && len(p) == 0 {
    		n = 0
    	}
    	return n, nil
    }
    
    func (sa *RawSockaddrUnix) getLen() (int, error) {
    	// Some versions of AIX have a bug in getsockname (see IV78655).
    	// We can't rely on sa.Len being set correctly.
    	n := SizeofSockaddrUnix - 3 // subtract leading Family, Len, terminating NUL.
    	for i := 0; i < n; i++ {
    		if sa.Path[i] == 0 {
    			n = i
    			break
    		}
    	}
    	return n, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. cmd/bucket-replication-utils.go

    	}
    	return b.String()
    }
    
    func (ri replicatedInfos) Action() replicationAction {
    	for _, t := range ri.Targets {
    		if t.Empty() {
    			continue
    		}
    		// rely on replication action from target that actually performed replication now.
    		if t.PrevReplicationStatus != replication.Completed {
    			return t.ReplicationAction
    		}
    	}
    	return replicateNone
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status.go

    	node := originalNode.DeepCopy()
    
    	podCIDRChanged := false
    	if len(node.Spec.PodCIDRs) != 0 {
    		// Pod CIDR could have been updated before, so we cannot rely on
    		// node.Spec.PodCIDR being non-empty. We also need to know if pod CIDR is
    		// actually changed.
    		var err error
    		podCIDRs := strings.Join(node.Spec.PodCIDRs, ",")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top