Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 569 for logic (0.04 sec)

  1. maven-toolchain-model/src/site/apt/index.apt

     This is the model for Maven toolchain in <<<org.apache.maven.toolchain>>> package,
     delegating content to {{{../api/maven-api-toolchain/index.html}Maven 4 API immutable toolchain}}. All the effective model
     building logic from multiple toolchains files is done in {{{../maven-toolchain-builder/}Maven Toolchain Builder}}.
    
     The following are generated from this model:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. pkg/registry/core/replicationcontroller/strategy.go

    	corevalidation "k8s.io/kubernetes/pkg/apis/core/validation"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // rcStrategy implements verification logic for Replication Controllers.
    type rcStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating Replication Controller objects.
    var Strategy = rcStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:06:10 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  3. internal/http/check_port_test.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package http
    
    import (
    	"fmt"
    	"net"
    	"runtime"
    	"strconv"
    	"testing"
    )
    
    // Tests for port availability logic written for server startup sequence.
    func TestCheckPortAvailability(t *testing.T) {
    	if runtime.GOOS != "linux" {
    		t.Skip()
    	}
    
    	l, err := net.Listen("tcp", "localhost:0") // ask kernel for a free port.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 21:12:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/reset/preflight.go

    		Run:     runPreflight,
    		InheritFlags: []string{
    			options.IgnorePreflightErrors,
    			options.ForceReset,
    			options.DryRun,
    		},
    	}
    }
    
    // runPreflight executes preflight checks logic.
    func runPreflight(c workflow.RunData) error {
    	r, ok := c.(resetData)
    	if !ok {
    		return errors.New("preflight phase invoked with an invalid data struct")
    	}
    
    	if !r.ForceReset() && !r.DryRun() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CommandLineTaskExecutionIntegrationTest.groovy

            ":a::b"  | "Cannot locate tasks that match ':a::b'. The path should not include an empty segment (try ':a:b' instead)."
        }
    
        @ToBeFixedForIsolatedProjects(because = "Investigate")
        def "build logic can mutate the list of requested tasks"() {
            buildFile """
                gradle.startParameter.taskNames += ["last"]
    
                task one {
                    doLast {}
                }
    
                task last {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 2.3K bytes
    - Viewed (3)
  6. src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.logic;
    
    import javax.annotation.Resource;
    
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.dbflute.hook.AccessContext;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.core.time.TimeManager;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] Provide integration tests (under `<subproject>/src/integTest`) to verify changes from a user perspective.
    - [ ] Provide unit tests (under `<subproject>/src/test`) to verify logic.
    - [ ] Update User Guide, DSL Reference, and Javadoc for public-facing changes.
    - [ ] Ensure that tests pass sanity check: `./gradlew sanityCheck`.
    - [ ] Ensure that tests pass locally: `./gradlew <changed-subproject>:quickTest`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 22:36:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. releasenotes/notes/gateway-api118.yaml

    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Improved** [Gateway API Automated Deployment](https://istio.io/latest/docs/tasks/traffic-management/ingress/gateway-api/#automated-deployment) management logic.
      See Upgrade Notes for more information.
    
    upgradeNotes:
    - title: Gateway API Automated Deployment changes.
      content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 08:37:21 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc

        EXPECT_THAT(s.message(), HasSubstr("Second diagnostic message reported"));
      }
    }
    
    TEST(ErrorUtilTest, StatusScopedDiagnosticHandlerWithFilter) {
      // Filtering logic is based on tensorflow::IsInternalFrameForFilename()
      // Note we are surfacing the locations that are NOT internal frames
      // so locations that fail IsInternalFrameForFilename() evaluation pass the
      // filter.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization_lib.cc

    using ::tensorflow::SignatureDef;
    using ::tensorflow::quantization::PyFunctionLibrary;
    
    // Note for maintainers: the definitions should ONLY mirror existing functions
    // defined in different targets. Do not include any extra business logic that
    // causes divergence from the semantics of mirrored functions.
    
    absl::Status PywrapQuantizeStaticRangePtq(
        absl::string_view src_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 02:51:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top