Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 84 for logic (0.1 sec)

  1. pkg/proxy/ipvs/proxier.go

    	// initialSync is a bool indicating if the proxier is syncing for the first time.
    	// It is set to true when a new proxier is initialized and then set to false on all
    	// future syncs.
    	// This lets us run specific logic that's required only during proxy startup.
    	// For eg: it enables us to update weights of existing destinations only on startup
    	// saving us the cost of querying and updating real servers during every sync.
    	initialSync bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    			return in < jn
    		}
    		return configs[i].CreationTimestamp.Before(configs[j].CreationTimestamp)
    	})
    }
    
    // convertResources is the top level entrypoint to our conversion logic, computing the full state based
    // on KubernetesResources inputs.
    func convertResources(r GatewayResources) IstioResources {
    	// sort HTTPRoutes by creation timestamp and namespace/name
    	sortConfigByCreationTime(r.HTTPRoute)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multimaps.java

      }
    
      /**
       * Returns a view of a multimap whose values are derived from the original multimap's entries. In
       * contrast to {@link #transformValues}, this method's entry-transformation logic may depend on
       * the key as well as the value.
       *
       * <p>All other properties of the transformed multimap, such as iteration order, are left intact.
       * For example, the code:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Multimaps.java

      }
    
      /**
       * Returns a view of a multimap whose values are derived from the original multimap's entries. In
       * contrast to {@link #transformValues}, this method's entry-transformation logic may depend on
       * the key as well as the value.
       *
       * <p>All other properties of the transformed multimap, such as iteration order, are left intact.
       * For example, the code:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:task_input_output_runtime_api]]
    == Declaring inputs and outputs via the runtime API
    
    Custom task classes are an easy way to bring your own build logic into the arena of incremental build, but you don’t always have that option. That's why Gradle also provides an alternative API that can be used with any tasks, which we look at next.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_messages.go

    				len(m.cookie) == 0 {
    				return false
    			}
    		case extensionKeyShare:
    			// This extension has different formats in SH and HRR, accept either
    			// and let the handshake logic decide. See RFC 8446, Section 4.2.8.
    			if len(extData) == 2 {
    				if !extData.ReadUint16((*uint16)(&m.selectedGroup)) {
    					return false
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    // matter because it will only be used subsequently for shape inference. (It
    // would be possible to add a switch statement over data_type to create a value
    // for the constant, but that would entail maintaining the logic as new types
    // are added, and is not necessary.) If the node being replaced was within a
    // control flow frame, adds appropriate Enter nodes so that the use of the Const
    // is well-formed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    		nodeInfo.SetNode(node)
    		tc.nodeInfos = append(tc.nodeInfos, nodeInfo)
    	}
    	tc.state = framework.NewCycleState()
    
    	return tc
    }
    
    // createReactor implements the logic required for the UID and ResourceVersion
    // fields to work when using the fake client. Add it with client.PrependReactor
    // to your fake client. ResourceVersion handling is required for conflict
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    					ErrReasonAffinityRulesNotMatch,
    				),
    			},
    			name: "Test incoming pod's affinity: firstly check if all affinityTerms match, and then check if all topologyKeys match, and the match logic should be satisfied on the same pod",
    		},
    	}
    
    	for indexTest, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			_, ctx := ktesting.NewTestContext(t)
    			ctx, cancel := context.WithCancel(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			expectedRequeueDuration:    1*time.Hour - time.Second*time.Duration(shortDead+1) + nextScheduleDelta,
    			expectUpdateStatus:         true,
    			jobPresentInCJActiveStatus: true,
    		},
    		// This test will fail: the logic around StartingDeadlineSecond in getNextScheduleTime messes up
    		// the time that calculating schedule.Next(earliestTime) is based on. While this works perfectly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
Back to top