Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for intKind (0.2 sec)

  1. build/README.md

    The build system output all its products to a top level directory in the source repository named `_output`.
    These include the binary compiled packages (e.g. kubectl, kube-scheduler etc.) and archived Docker images.
    If you intend to run a component with a docker image you will need to import it from this directory with
    the appropriate command (e.g. `docker import _output/release-images/amd64/kube-scheduler.tar k8s.io/kube-scheduler:$(git describe)`).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/syscall/exec_unix.go

    	"runtime"
    	"sync"
    	"unsafe"
    )
    
    // ForkLock is used to synchronize creation of new file descriptors
    // with fork.
    //
    // We want the child in a fork/exec sequence to inherit only the
    // file descriptors we intend. To do that, we mark all file
    // descriptors close-on-exec and then, in the child, explicitly
    // unmark the ones we want the exec'ed program to keep.
    // Unix doesn't make this easy: there is, in general, no way to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            then:
            //ME: This is not a foolproof way of checking that additional jars have not been accidentally added to the distribution
            //but should be good enough. If this test fails for you and you did not intend to add new jars to the distribution
            //then there is something to be fixed. If you intentionally added new jars to the distribution and this is now failing please
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. src/html/template/error.go

    	//   could produce `/-2/i.test(s)` in which the first '/' starts a
    	//   regexp literal.
    	//   Look for missing semicolons inside branches, and maybe add
    	//   parentheses to make it clear which interpretation you intend.
    	ErrSlashAmbig
    
    	// ErrPredefinedEscaper: "predefined escaper ... disallowed in template"
    	// Example:
    	//   <div class={{. | html}}>Hello<div>
    	// Discussion:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    If you did this intentionally, this is a mistake because those directories should never be written directly: all artifact transform writes should be performed within the artifact transform code itself.
    
    If you didn't intend to write in this directory, you should simply setup your task to write in a different location.
    
    [[unsupported_notation]]
    == Unsupported notation in file inputs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

                    file.copyTo(File(destinationDir, file.name))
                }
            }
        }
    }
    ----
    <1> Register the `myCopy` task of type `Copy` to let Gradle know we intend to use it in our build logic.
    <2> Configure the registered `myCopy` task with the inputs and outputs it needs according to its link:{javadocPath}/org/gradle/api/tasks/Copy.html[API].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. guava-gwt/pom.xml

                  <sourceLevel>1.8</sourceLevel>
                  <!--
                    To avoid "java.io.IOException: User limit of inotify watches reached" under JDK10.
                    Presumably we don't need inotify, since we don't intend to change files during the
                    build?
                    -->
                  <extraJvmArgs>-Dgwt.watchFileChanges=false</extraJvmArgs>
                </configuration>
              </execution>
              <!--
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. src/net/tcpsock.go

    // separately nor changing Count (which is usually 10) is supported.
    // Therefore, it's recommended to set both Idle and Interval to non-negative values
    // in conjunction with a -1 for Count on those old Windows if you intend to customize
    // the TCP keep-alive settings.
    // By contrast, if only one of Idle and Interval is set to a non-negative value,
    // the other will be set to the system default value, and ultimately,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. istioctl/pkg/waypoint/waypoint.go

    			// If they don't, the user will be warned and be presented with the command to label their namespace as ambient if they
    			// choose to do so.
    			//
    			// NOTE: This is a warning and not an error because the user may not intend to label their namespace as ambient.
    			//
    			// e.g. Users are handling ambient redirection per workload rather than at the namespace level.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/gateway.go

    				// This has pros and cons; we don't allow merging of routes when it would be desirable, but
    				// we also avoid accidentally merging routes when we didn't intend to. While neither option is great,
    				// picking the first one here preserves backwards compatibility.
    				return []uint32{w.Port.TargetPort}
    			}
    			ports.Insert(w.Port.TargetPort)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top