Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 166 for distinguish (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/organizing_tasks.adoc

    In the example, we add the `classes` task, a lifecycle task to compile all our production code, and the `spotbugsMain` task, which checks our production code.
    
    We also add a description that will show up in the task list that helps distinguish the two check tasks better.
    
    Now, if run './gradlew :app:tasks', we can see that our new `qualityCheck` lifecycle task is available:
    
    [source, text]
    ----
    $ ./gradlew :app:tasks
    
    > Task :app:tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/informers.go

    		// pod was added to our cache
    		// we get here in 2 cases:
    		// 1. new pod was created on our node
    		// 2. we were restarted and current existing pods are added to our cache
    
    		// We have no good way to distinguish between these two cases from here. But we don't need to!
    		// Existing pods will be handled by the dataplane using `GetAmbientPods`,
    		// and the initial enqueueNamespace, and new pods will be handled by the CNI.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top