Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 244 for addOption (0.55 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    
    [[sec:idea_customizing_the_generated_files]]
    == Customizing the generated files
    
    The IDEA plugin provides hooks and behavior for customizing the generated content in a more controlled and detailed way. In addition, the `withXml` hook is the only practical way to modify the workspace file because its corresponding domain object is essentially empty.
    
    NOTE: The techniques we discuss in this section don't work with IDEA's import facility
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. 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)
  9. pkg/workloadapi/workload.proto

    // to answer a question like "what is this IP address", similar to a reverse DNS lookup.
    //
    // Each resource will have a mesh-wide unique opaque name, defined in the individual messages.
    // In addition, to support lookup by IP address, they will have *alias* names for each IP the resource represents.
    // There may be multiple aliases for the same resource (examples: service in multiple networks, or a dual-stack workload).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/UnsignedInts.java

     * 2^32 + x}). The methods for which signedness is not an issue are in {@link Ints}, as well as
     * signed versions of methods for which signedness is an issue.
     *
     * <p>In addition, this class provides several static methods for converting an {@code int} to a
     * {@code String} and a {@code String} to an {@code int} that treat the {@code int} as an unsigned
     * number.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top