Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 163 for addOption (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    The following video demonstrates how to debug an example build using IntelliJ IDEA.
    
    .Interactive debugging of a build script
    image::remote-debug-gradle.gif[]
    
    === Adding and changing logging
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

         *
         * <p>An @Inject annotation is required on any constructor that accepts parameters because JSR-330 semantics for dependency injection are used. In addition to those parameters provided as an argument to this method, the following services are also available for injection:</p>
         *
         * <ul>
         *     <li>{@link ObjectFactory}.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/offline-mode.apt

      types of tests cannot be setup, since the container used to run them cannot be
      reached or started.
    
      All of these operations will produce their own unique errors in the absence of
      a coordinated offline strategy. In addition, efforts to unite these failing
      behaviors behind a consistent user interface is much, much more difficult if
      the system can't tell whether it has access to the network required by these
      operations.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/internal/bisect/bisect.go

    //
    // The pattern syntax selecting a change is a sequence of bit strings
    // separated by + and - operators. Each bit string denotes the set of
    // changes with IDs ending in those bits, + is set addition, - is set subtraction,
    // and the expression is evaluated in the usual left-to-right order.
    // The special binary number “y” denotes the set of all changes,
    // standing in for the empty bit string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho_combine_dwarf.go

    			segSize += newSect.Size
    		}
    		seg.Filesz = segSize
    	} else {
    		seg.Filesz = dwarfsize
    	}
    
    	// We want the DWARF segment to be considered non-loadable, so
    	// force vmaddr and vmsize to zero. In addition, set the initial
    	// protection to zero so as to make the dynamic loader happy,
    	// since otherwise it may complain that the vm size and file
    	// size don't match for the segment. See issues 21647 and 32673
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/runtime/slice.go

    		capmem, overflow = math.MulUintptr(et.Size_, uintptr(newcap))
    		capmem = roundupsize(capmem, noscan)
    		newcap = int(capmem / et.Size_)
    		capmem = uintptr(newcap) * et.Size_
    	}
    
    	// The check of overflow in addition to capmem > maxAlloc is needed
    	// to prevent an overflow which can be used to trigger a segfault
    	// on 32bit architectures with this example program:
    	//
    	// type T [1<<27 + 1]int64
    	//
    	// var d T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/productpage.py

            }
        ]
    
    
    def getProduct(product_id):
        products = getProducts()
        if product_id + 1 > len(products):
            return None
        else:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  8. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    				Level: sc.SELinuxOptions.Level,
    			}
    		}
    	}
    
    	return lc, nil
    }
    
    // generatePodSandboxWindowsConfig generates WindowsPodSandboxConfig from v1.Pod.
    // On Windows this will get called in addition to LinuxPodSandboxConfig because not all relevant fields have been added to
    // WindowsPodSandboxConfig at this time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    // split into "migrating builds" vs. "migrating scripts"?
    
    As we've seen above, both scripts using the Kotlin DSL and those using the Groovy DSL can participate in the same build.
    In addition, Gradle plugins from the _buildSrc_ directory, an included build or an external location can be implemented using any JVM language.
    This makes it possible to migrate a build progressively, piece by piece, without blocking your team.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

     * change the default values for several properties of the project.</p>
     *
     * <h3>Using Settings in a Settings File</h3>
     *
     * <h4>Dynamic Properties</h4>
     *
     * <p>In addition to the properties of this interface, the {@code Settings} object makes some additional read-only
     * properties available to the settings script. This includes properties from the following sources:</p>
     *
     * <ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top