Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 424 for distinguish (0.26 sec)

  1. test/escape2.go

    }
    
    var xxx **int
    
    func foo12(yyy **int) { // ERROR "leaking param: yyy$"
    	xxx = yyy
    }
    
    // Must treat yyy as leaking because *yyy leaks, and the escape analysis
    // summaries in exported metadata do not distinguish these two cases.
    func foo13(yyy **int) { // ERROR "leaking param content: yyy$"
    	*xxx = *yyy
    }
    
    func foo14(yyy **int) { // ERROR "yyy does not escape$"
    	**xxx = **yyy
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  2. src/debug/dwarf/entry.go

    		// In DWARF 2 and 3, ClassPtr was encoded as a
    		// constant. Unlike ClassExprLoc/ClassBlock, some
    		// DWARF 4 attributes need to distinguish Class*Ptr
    		// from ClassConstant, so we only do this promotion
    		// for versions 2 and 3.
    		if class, ok := attrPtrClass[attr]; vers < 4 && ok {
    			return class
    		}
    		return ClassConstant
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/aggregate/controller_test.go

    		}
    	}
    }
    
    func TestGetProxyWorkloadLabels(t *testing.T) {
    	// If no registries return workload labels, we must return nil, rather than an empty list.
    	// This ensures callers can distinguish between no labels, and labels not found.
    	aggregateCtl := buildMockController()
    
    	instances := aggregateCtl.GetProxyWorkloadLabels(&model.Proxy{IPAddresses: []string{mock.HelloInstanceV0}})
    	if instances != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/apiclient/wait.go

    			hash, err := getStaticPodSingleHash(w.client, nodeName, component)
    			if err != nil {
    				lastErr = err
    				return false, nil
    			}
    			// Set lastErr to nil to be able to later distinguish between getStaticPodSingleHash() and timeout errors
    			lastErr = nil
    			// We should continue polling until the UID changes
    			if hash == previousHash {
    				return false, nil
    			}
    
    			return true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Optional.java

     *
     * <p>Some uses of this class include
     *
     * <ul>
     *   <li>As a method return type, as an alternative to returning {@code null} to indicate that no
     *       value was available
     *   <li>To distinguish between "unknown" (for example, not present in a map) and "known to have no
     *       value" (present in the map, with value {@code Optional.absent()})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    			runtime.LockOSThread()
    			if err := setupSandbox(); err != nil {
    				return err
    			}
    			// Mark we have actually run the command. This lets us distinguish from a failure in setupSandbox() vs f()
    			executed = true
    			return f()
    		}()
    	}()
    	err := <-chErr
    	if err != nil && !executed {
    		// We failed to setup the environment. Now we go into best effort mode.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. test/escape2n.go

    }
    
    var xxx **int
    
    func foo12(yyy **int) { // ERROR "leaking param: yyy$"
    	xxx = yyy
    }
    
    // Must treat yyy as leaking because *yyy leaks, and the escape analysis
    // summaries in exported metadata do not distinguish these two cases.
    func foo13(yyy **int) { // ERROR "leaking param content: yyy$"
    	*xxx = *yyy
    }
    
    func foo14(yyy **int) { // ERROR "yyy does not escape$"
    	**xxx = **yyy
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  8. internal/kms/config.go

    	// MINIO_KMS_SECRET_KEY_FILE. The docker image always sets the
    	// MINIO_KMS_SECRET_KEY_FILE - either to the argument passed to
    	// the container or to a default string (e.g. "minio_master_key").
    	//
    	// We have to distinguish a explicit config from an implicit. Hence,
    	// we unset the env. vars if they are set but empty or contain a path
    	// which does not exist. The downside of this check is that if
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tls.go

    		// 3) or if the destination is a wildcard destination VIP with the listener bound to the wildcard as well.
    		// In the above cited cases, the listener will be bound to 0.0.0.0. So SNI match is the only way to distinguish different
    		// target services. If we have a VIP, then we know the destination. Or if we do not have an VIP, but have
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/run.go

    		return nil
    	}
    	return err
    }
    
    // configureIPv6Addresses sets up a new IP address on local interface. This is used as the source IP
    // for inbound traffic to distinguish traffic we want to capture vs traffic we do not. This is needed
    // for IPv6 but not IPv4, as IPv4 defaults to `netmask 255.0.0.0`, which allows binding to addresses
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top