Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for logic (0.05 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// There are a maximum of 64 match conditions allowed.
    	//
    	// If a parameter object is provided, it can be accessed via the `params` handle in the same
    	// manner as validation expressions.
    	//
    	// The exact matching logic is (in order):
    	//   1. If ANY matchCondition evaluates to FALSE, the policy is skipped.
    	//   2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// There are a maximum of 64 match conditions allowed.
    	//
    	// If a parameter object is provided, it can be accessed via the `params` handle in the same
    	// manner as validation expressions.
    	//
    	// The exact matching logic is (in order):
    	//   1. If ANY matchCondition evaluates to FALSE, the policy is skipped.
    	//   2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  3. pkg/controller/disruption/disruption_test.go

    	// code.  If you update a parameter here, recalculate the correct values for
    	// all of them.  Further down in the test, we use these to control loops, and
    	// that level of logic is enough complexity for me.
    	const collectionSize int32 = 11 // How big each collection is
    	const minimumOne int32 = 4      // integer minimum with one controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			wantStatus: framework.NewStatus(framework.Success),
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			// index the potential victim pods in the fake client so that the victims deletion logic does not fail
    			podItems := []v1.Pod{}
    			for _, pod := range tt.pods {
    				podItems = append(podItems, *pod)
    			}
    			cs := clientsetfake.NewSimpleClientset(&v1.PodList{Items: podItems})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    };
    
    // StridedSlice can have complicated attributes like begin_axis_mask,
    // end_axis_mask, ellipsis_axis_mask, new_axis_mask, shrink_axis_mask. These
    // masks will complicate the strided_slice computation logic, we can simplify
    // the logic by inserting a reshape op to pad the inputs so strided_slice can
    // be easier to handle.
    //
    // So the graph may looks like below:
    //   original_input -> strided_slice -> output
    //      (transforms)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	// block. If the MAC check passed but the padding check failed, the
    	// last byte of that block decrypted to the block size.
    	//
    	// See also macAndPaddingGood logic below.
    	paddingLen &= good
    
    	toRemove = int(paddingLen) + 1
    	return
    }
    
    func roundUp(a, b int) int {
    	return a + (b-a%b)%b
    }
    
    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. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/copy/groovy",files="build.gradle[tags=rename-on-copy-example]"]
    ====
    
    As in the above example, you can use regular expressions for this or closures that use more complex logic to determine the target filename.
    For example, the following task truncates filenames:
    
    ====
    include::sample[dir="snippets/files/copy/kotlin",files="build.gradle.kts[tags=truncate-names-example]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	// Disable GOEXPERIMENT when building toolchain1 and
    	// go_bootstrap. We don't need any experiments for the
    	// bootstrap toolchain, and this lets us avoid duplicating the
    	// GOEXPERIMENT-related build logic from cmd/go here. If the
    	// bootstrap toolchain is < Go 1.17, it will ignore this
    	// anyway since GOEXPERIMENT is baked in; otherwise it will
    	// pick it up from the environment we set here. Once we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[lazypublishartifact_fileresolver]]
    ==== Using LazyPublishArtifact without a FileResolver is deprecated
    
    When using a LazyPublishArtifact without a FileResolver, a different file resolution strategy is used, which duplicates some logic in the FileResolver.
    
    To improve consistency, LazyPublishArtifact should be used with a FileResolver, and will require it in the future.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel4.8:deferred_configuration]]
    === [4.8] Use deferred configuration for publishing plugins
    
    Prior to Gradle 4.8, the `publishing {}` block was implicitly treated as if all the logic inside it was executed after the project was evaluated.
    This was confusing, because it was the only block that behaved that way.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top