Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for unmatched (0.15 sec)

  1. src/cmd/go/internal/modget/get.go

    		}
    	}
    
    	// TODO(golang.org/issue/33284): attribute changes to command line arguments.
    	// For modules matched by command line arguments, this probably isn't
    	// necessary, but it would be useful for unmatched direct dependencies of
    	// the main module.
    }
    
    // resolve records that module m must be at its indicated version (which may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    			expected: map[string][]string{
    				"alt-known.default.svc.cluster.local": {"outbound|80||arbitrary.example.com"},
    				"known.default.svc.cluster.local":     {"outbound|80||arbitrary.example.com"},
    				// Matched an exact service, so we have no route for the wildcard
    				"*.cluster.local": nil,
    			},
    			expectedGateway: map[string][]string{
    				// Exact service matches do not get the wildcard applied
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    					hostMatched = hostMatched || hostnameMatch
    					if hostnameMatch && namespaceMatch {
    						matched = true
    						break out
    					}
    				}
    			}
    			if !matched {
    				if hostMatched {
    					return &ParentError{
    						Reason: ParentErrorNotAllowed,
    						Message: fmt.Sprintf(
    							"hostnames matched parent hostname %q, but namespace %q is not allowed by the parent",
    							parent.OriginalHostname, namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	}
    	// Note: leave v.Block intact.  The Block field is used after clobberIfDead.
    	return true
    }
    
    // noteRule is an easy way to track if a rule is matched when writing
    // new ones.  Make the rule of interest also conditional on
    //
    //	noteRule("note to self: rule of interest matched")
    //
    // and that message will print when the rule matches.
    func noteRule(s string) bool {
    	fmt.Println(s)
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	defer c.watchCache.RUnlock()
    
    	var cacheInterval *watchCacheInterval
    	cacheInterval, err = c.watchCache.getAllEventsSinceLocked(requiredResourceVersion, key, opts)
    	if err != nil {
    		// To match the uncached watch implementation, once we have passed authn/authz/admission,
    		// and successfully parsed a resource version, other errors must fail with a watch event of type ERROR,
    		// rather than a directly returned error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    }
    
    // Returns a `llvm::DenseMap` which maps from the index of tensorlist in the
    // result, to the index of the same tensorlist in the arguments. For `If` op's
    // branch functions, the results and arguments are not usually matched 1-1. This
    // will let us konw which tensorlist result maps to which tensorlist in the
    // arguments. Once we know this info it will help us decide the types of the
    // result tensorlist based on the operand's of the `If` op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    	pods, err := jm.podStore.Pods(j.Namespace).List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    	// If any adoptions are attempted, we should first recheck for deletion
    	// with an uncached quorum read sometime after listing Pods (see #42639).
    	canAdoptFunc := controller.RecheckDeletionTimestamp(func(ctx context.Context) (metav1.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top