Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 572 for addLine (0.3 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Then we set the `TARGET_JVM_VERSION_ATTRIBUTE` to `8` for both variants, remove any existing file from the new variants with `removeAllFiles()`, and add the jdk8 jar file with `addFile()`.
    The `removeAllFiles()` is needed, because the reference to the main jar `quasar-core-0.7.5.jar` is copied from the corresponding base variant.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status.go

    		if err != nil {
    			return nil, err
    		}
    		if instanceType != "" {
    			klog.InfoS("Adding label from cloud provider", "labelKey", v1.LabelInstanceType, "labelValue", instanceType)
    			node.ObjectMeta.Labels[v1.LabelInstanceType] = instanceType
    			klog.InfoS("Adding node label from cloud provider", "labelKey", v1.LabelInstanceTypeStable, "labelValue", instanceType)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    Before asking GitHub Actions to build your project, it's useful to ensure that it builds locally.
    Adding the "CI" environment variable will emulate running the build on GitHub Actions.
    
    The following command achieves that:
    
    [listing.terminal.sample-command]
    ----
    $ CI=true ./gradlew build
    
    BUILD SUCCESSFUL
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

        }
    
        private Path assignPath(BuildState owner, String name, File dir) {
            // Get the closest ancestor build of the build directory which we are currently adding
            Optional<Map.Entry<File, NestedBuildState>> parentBuild = nestedBuildsByRootDir.entrySet().stream()
                .filter(entry -> isPrefix(entry.getKey(), dir))
                .reduce((a, b) -> isPrefix(a.getKey(), b.getKey())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java

          ImmutableLongArray iia = builder.build();
          for (int j = 0; j < iia.length(); j++) {
            assertThat(iia.get(j)).isEqualTo((long) j);
          }
        }
      }
    
      private enum BuilderOp {
        ADD_ONE {
          @Override
          void doIt(ImmutableLongArray.Builder builder, AtomicLong counter) {
            builder.add(counter.getAndIncrement());
          }
        },
        ADD_ARRAY {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    files such as assembly. To report a diagnostic against a line of a
    raw text file, use the following sequence:
    
    	content, err := pass.ReadFile(filename)
    	if err != nil { ... }
    	tf := fset.AddFile(filename, -1, len(content))
    	tf.SetLinesForContent(content)
    	...
    	pass.Reportf(tf.LineStart(line), "oops")
    
    # Modular analysis with Facts
    
    To improve efficiency and scalability, large programs are routinely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. pkg/kubelet/prober/prober_manager_test.go

    		},
    	}
    
    	m := newTestManager()
    	defer cleanup(t, m)
    	if err := expectProbes(m, nil); err != nil {
    		t.Error(err)
    	}
    
    	// Adding a pod with no probes should be a no-op.
    	m.AddPod(&noProbePod)
    	if err := expectProbes(m, nil); err != nil {
    		t.Error(err)
    	}
    
    	// Adding a pod with probes.
    	m.AddPod(&probePod)
    	probePaths := []probeKey{
    		{"probe_pod", "readiness", readiness},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ExclusiveVariantsIntegrationTest.groovy

                "Consider adding an additional attribute to one of the configurations to disambiguate them.  " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:34:52 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    ****
    **In this section you will:**
    
    - Understand project dependencies
    - Inspect project dependencies
    - Use a Build Scan to analyze dependencies
    - Update project dependencies
    - Understand transitive dependencies
    - Adding a version catalog
    ****
    
    [[part3_begin]]
    == Step 0. Before you Begin
    
    1. You initialized your Java app in <<part1_gradle_init.adoc#part1_begin,part 1>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

          return false;
        }
    
        this.mayInterruptIfRunning = mayInterruptIfRunning;
        state = State.CANCELLED;
        notifyAndClearListeners();
    
        if (delegate != null) {
          // TODO(lukes): consider adding the StackOverflowError protection from the server version
          delegate.cancel(mayInterruptIfRunning);
        }
    
        return true;
      }
    
      protected void interruptTask() {}
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 19:37:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top