Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,566 for excluding (0.29 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         * - **Java class:** The scope contains static callables (functions and properties) declared in the [KaSymbolWithMembers] or any of its
         *   superclasses (excluding static callables from super-interfaces), and classes declared directly in the [KaSymbolWithMembers]. This
         *   follows Kotlin's rules about static inheritance in Java classes, where static callables are propagated from superclasses, but
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

        }
    
        public void setInheritedByDefault(boolean inheritedByDefault) {
            this.inheritedByDefault = inheritedByDefault;
        }
    
        /**
         * Gets the artifacts that make up the plugin's class realm, excluding artifacts shadowed by the Maven core realm
         * like {@code maven-project}.
         *
         * @return The plugin artifacts, never {@code null}.
         */
        public List<Artifact> getArtifacts() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptorTest.groovy

            details.componentId >> DefaultModuleComponentIdentifier.newId(bazMod, '1.0')
            action.execute(details)
    
            then:
            1 * details.notFound()
        }
    
        def "excluding resets the inclusions"() {
            def fooMod = DefaultModuleIdentifier.newId('org', 'foo')
            def details = Mock(ArtifactResolutionDetails)
    
            given:
            descriptor.includeGroup("org")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	})
    }
    
    func applyCommandOverrides(cmd string, outputFormat int, cfg config) config {
    	// Some report types override the trim flag to false below. This is to make
    	// sure the default heuristics of excluding insignificant nodes and edges
    	// from the call graph do not apply. One example where it is important is
    	// annotated source or disassembly listing. Those reports run on a specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc

        stride_ = StrideForAxis(shape, axis);
        size_ = shape[axis];
      }
    
      // Returns the size of the 1-d slice across the tensor.
      int64_t size() const { return size_; }
    
      // Calculates the next index in a tensor excluding a specified axis.
      //
      // Returns the next index where one exists.
      // If there is no valid next index, returns `std::nullopt`.
      //
      // `index` should have the same size as `shape`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/crypto/tls/ticket.go

    	//       uint8 ext_master_secret = { 0, 1 };
    	//       uint8 early_data = { 0, 1 };
    	//       CertificateEntry certificate_list<0..2^24-1>;
    	//       CertificateChain verified_chains<0..2^24-1>; /* excluding leaf */
    	//       select (SessionState.early_data) {
    	//           case 0: Empty;
    	//           case 1: opaque alpn<1..2^8-1>;
    	//       };
    	//       select (SessionState.type) {
    	//           case server: Empty;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. cmd/notification.go

    			reply[index].Errors = []string{fmt.Sprintf("%s: %s (rpc)", sys.peerClients[index].String(), err.Error())}
    		}
    	}
    	return reply
    }
    
    // GetResourceMetrics - gets the resource metrics from all nodes excluding self.
    func (sys *NotificationSys) GetResourceMetrics(ctx context.Context) <-chan MetricV2 {
    	if sys == nil {
    		return nil
    	}
    	g := errgroup.WithNErrs(len(sys.peerClients))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

     * <p>
     * The following example shows how you can configure the 'main' source set, which in this
     * case involves excluding classes whose package begins 'some.unwanted.package' from
     * compilation of the source files in the 'java' {@link SourceDirectorySet}:
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     * }
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        op_key: The unique key to identify this op.
        num_args: The number of inputs.
        device: The tensorflow device. eg. "/CPU:0"
        op_attrs: The tensorflow attributes excluding the func attrs.
        op_func_attrs: The func attrs.
        op_name: The tensorflow op name. eg. "tf.AddV2"
    
        Example:
          %out_ch = tfrt_fallback_async.createop(%in_ch) key(0) device("/CPU:0")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/validtype.go

    					targ := inst.TypeArgs().At(i)
    					// The type argument must be valid in the enclosing
    					// type (where inst was instantiated), hence we must
    					// check targ's validity in the type nest excluding
    					// the current (instantiated) type (see the example
    					// at the end of this file).
    					// For error reporting we keep the full path.
    					res := check.validType0(pos, targ, nest[:d], path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top