Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for GETs (0.07 sec)

  1. istioctl/pkg/describe/describe.go

    func extendFQDN(host string) string {
    	if host[0] == '*' {
    		return host
    	}
    	if strings.HasSuffix(host, k8sSuffix) {
    		return host
    	}
    	return host + k8sSuffix
    }
    
    // getDestRuleSubsets gets names of subsets that match any pod labels (also, ones that don't match).
    func getDestRuleSubsets(subsets []*v1alpha3.Subset, podsLabels []klabels.Set) ([]string, []string) {
    	matchingSubsets := make([]string, 0, len(subsets))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

       */
      public static int frequency(Iterator<?> iterator, @CheckForNull Object element) {
        int count = 0;
        while (contains(iterator, element)) {
          // Since it lives in the same class, we know contains gets to the element and then stops,
          // though that isn't currently publicly documented.
          count++;
        }
        return count;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

       */
      public static int frequency(Iterator<?> iterator, @CheckForNull Object element) {
        int count = 0;
        while (contains(iterator, element)) {
          // Since it lives in the same class, we know contains gets to the element and then stops,
          // though that isn't currently publicly documented.
          count++;
        }
        return count;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                }
            }
    
            def scope = registry.root.getLink("beans")
            scope.applyToSelf(rules)
    
            expect:
            // Rule gets applied to node in scope
            registry.realize("beans.bean2", Bean).name == "bean"
    
            // Rule doesn't get applied to node outside scope
            registry.realize("bean1", Bean).name == "bean1 unmodified"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                        }
                    }
                }
            }
        }
    
        // resolve constant-looking expressions statically (do here as gets transformed away later)
        private Expression transformInlineConstants(Expression exp) {
            if (exp instanceof PropertyExpression) {
                PropertyExpression pe = (PropertyExpression) exp;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    						// The nft docs say "dynamic" is only
    						// needed for sets containing stateful
    						// objects (eg counters), but (at least on
    						// RHEL8) if we create the set without
    						// "dynamic", it later gets mutated to
    						// have it, and then the next attempt to
    						// tx.Add() it here fails because it looks
    						// like we're trying to change the flags.
    						knftables.DynamicFlag,
    						knftables.TimeoutFlag,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    //     calls `req2.Finish`, which is expected to return after the context cancel.
    //  7. The queueset interface allows StartRequest 2 to return `nil` in this situation,
    //     if the scheduler gets the cancel done before StartRequest finishes;
    //     the test handles this without regard to whether the implementation will ever do that.
    //  8. Check that the above took exactly 1 second.
    func TestContextCancel(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  8. cmd/bucket-handlers.go

    	}))
    
    	// Write success response.
    	writeSuccessResponseHeadersOnly(w)
    }
    
    // GetBucketObjectLockConfigHandler - GET Bucket object lock configuration.
    // ----------
    // Gets the Object Lock configuration for a bucket. The rule specified in
    // the Object Lock configuration will be applied by default to every new
    // object placed in the specified bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	// is not existing
    	require.ErrorContains(t, err,
    		"no params found for policy binding with `Deny` parameterNotFoundAction")
    	require.Len(t, passedParams, 0)
    }
    
    // Show that policy still gets evaluated with `nil` param if paramRef & namespaceParamRef
    // are both unset
    func TestEmptyParamRef(t *testing.T) {
    	compiler := &fakeCompiler{}
    	matcher := &fakeMatcher{
    		DefaultMatch: true,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      if (has_dynamic_outputs) {
        return GetAllExternalOperands(cluster_ops);
      } else {
        return GetStaticExternalOperands(device_cluster, cluster_ops);
      }
    }
    
    // Gets all outputs that need to be communicated from host->device.
    void GetExternalOutputs(const llvm::SmallSetVector<Operation*, 4>& cluster_ops,
                            llvm::SmallSetVector<Value, 4>& external_outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top