Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,769 for indirectly (0.15 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/featurelifecycle/StackTraceSanitizerTest.groovy

            SimulatedJavaCallLocation   | INDIRECT_CALL   | 'indirectly'   | SimulatedJavaCallLocation.indirectly()
            SimulatedJavaCallLocation   | INDIRECT_CALL_2 | 'indirectly2'  | SimulatedJavaCallLocation.indirectly2()
            SimulatedGroovyCallLocation | DIRECT_CALL     | 'create'       | SimulatedGroovyCallLocation.create()
            SimulatedGroovyCallLocation | INDIRECT_CALL   | 'indirectly'   | SimulatedGroovyCallLocation.indirectly()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/featurelifecycle/SimulatedJavaCallLocation.java

        }
    
        static SimulatedSingleMessageLogger.TestFeatureUsage indirectly() {
            return SimulatedSingleMessageLogger.indirectly(SimulatedSingleMessageLogger.INDIRECT_CALL);
        }
    
        static SimulatedSingleMessageLogger.TestFeatureUsage indirectly2() {
            return SimulatedSingleMessageLogger.indirectlySecondLevel(SimulatedSingleMessageLogger.INDIRECT_CALL_2);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/featurelifecycle/SimulatedSingleMessageLogger.java

        public static final String INDIRECT_CALL = "indirect call";
        public static final String INDIRECT_CALL_2 = "second-level indirect call";
    
        public static TestFeatureUsage indirectlySecondLevel(String message) {
            return indirectly(message);
        }
    
        public static TestFeatureUsage indirectly(String message) {
            return nagUserWith(message);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/featurelifecycle/SimulatedGroovyCallLocation.groovy

            return SimulatedSingleMessageLogger.nagUserWith(SimulatedSingleMessageLogger.DIRECT_CALL)
        }
    
        static FeatureUsage indirectly() {
            return SimulatedSingleMessageLogger.indirectly(SimulatedSingleMessageLogger.INDIRECT_CALL)
        }
    
        static FeatureUsage indirectly2() {
            return SimulatedSingleMessageLogger.indirectlySecondLevel(SimulatedSingleMessageLogger.INDIRECT_CALL_2)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

        /**
         * Gets the downstream projects of the specified project. A downstream project is a project that directly or
         * indirectly depends on the given project.
         *
         * @param project The project whose downstream projects should be retrieved, must not be {@code null}.
         * @param transitive A flag whether to retrieve all direct and indirect downstream projects or just the immediate
         *            downstream projects.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. test/fixedbugs/issue32778.go

    // source code is governed by a BSD-style license that can be found in
    // the LICENSE file.
    
    // This directory contains a pair of packages that triggers a compiler
    // crash in gccgo (problem with tracking indirectly referenced
    // packages during exporting). See issue 32778 for details.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 02 16:34:55 UTC 2019
    - 386 bytes
    - Viewed (0)
  7. releasenotes/notes/27086.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 26080
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 15 14:14:21 UTC 2020
    - 216 bytes
    - Viewed (0)
  8. src/runtime/timestub.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Declarations for operating systems implementing time.now
    // indirectly, in terms of walltime and nanotime assembly.
    
    //go:build !faketime && !windows && !(linux && amd64)
    
    package runtime
    
    import _ "unsafe" // for go:linkname
    
    // time_now should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 889 bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/testdata/deadcode/ifacemethod3.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Like ifacemethod2.go, this tests that a method *is* live
    // if the type is "indirectly" converted to an interface
    // using reflection with a method descriptor as intermediate.
    
    package main
    
    import "reflect"
    
    type S int
    
    func (s S) M() { println("S.M") }
    
    type I interface{ M() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 21:49:19 UTC 2021
    - 615 bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/resource_variable_ops.cc

    //
    //   The value returned by this operation is guaranteed to be influenced by all
    //   the writes on which this operation depends directly or indirectly, and to
    //   not be influenced by any of the writes which depend directly or indirectly
    //   on this operation.
    Status ReadVariableOp(AbstractContext* ctx,
                          AbstractTensorHandle* const resource,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top