Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 226 for touches (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

                dependencies {
                    add("defaultDependencies", project(":producer"))
                }
    
                ${forceConsumerResolution()}
            """
    
            file("producer/build.gradle.kts").touch()
        }
    
        private void setupIncompatibleRequestedConfigurationFailureForProject() {
            buildKotlinFile <<  """
                plugins {
                    id("base")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy.go

    	newPod := obj.(*api.Pod)
    	oldPod := old.(*api.Pod)
    	newPod.Spec = oldPod.Spec
    	newPod.DeletionTimestamp = nil
    
    	// don't allow the pods/status endpoint to touch owner references since old kubelets corrupt them in a way
    	// that breaks garbage collection
    	newPod.OwnerReferences = oldPod.OwnerReferences
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. hack/update-codegen.sh

            --output-file "${output_file}" \
            --output-dir "${output_dir}" \
            --output-pkg "${output_pkg}" \
            --report-filename "${report_file}" \
            "${tag_pkgs[@]}" \
            "$@"
    
        touch "${report_file}"
        local known_filename="${known_violations_file}"
        if ! diff -u "${known_filename}" "${report_file}"; then
            echo -e "ERROR:"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/container_manager_linux.go

    		// Err on the side of caution. Avoid moving the docker daemon unless we are able to identify its context.
    		return err
    	} else if !runningInHost {
    		// Process is running inside a container. Don't touch that.
    		klog.V(2).InfoS("PID is not running in the host namespace", "pid", pid)
    		return nil
    	}
    
    	var errs []error
    	if manager != nil {
    		cont, err := getContainer(pid)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. pkg/volume/util/util.go

    		klog.Errorf("Can't mkdir %s: %v", dir, err)
    		return
    	}
    
    	readyFile := filepath.Join(dir, readyFileName)
    	file, err := os.Create(readyFile)
    	if err != nil {
    		klog.Errorf("Can't touch %s: %v", readyFile, err)
    		return
    	}
    	file.Close()
    }
    
    // GetSecretForPod locates secret by name in the pod's namespace and returns secret map
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

     * Learn how to <<organizing_gradle_projects#organizing_gradle_projects,structure your builds effectively>>
     * <<logging#logging,Configure Gradle's logging>> and use it from your builds
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

     * Learn how to <<organizing_gradle_projects#organizing_gradle_projects,structure your builds effectively>>
     * <<logging#logging,Configure Gradle's logging>> and use it from your builds
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/Files.java

       *
       * @param file the file to create or update
       * @throws IOException if an I/O error occurs
       */
      @SuppressWarnings("GoodTime") // reading system time without TimeSource
      public static void touch(File file) throws IOException {
        checkNotNull(file);
        if (!file.createNewFile() && !file.setLastModified(System.currentTimeMillis())) {
          throw new IOException("Unable to update modification time of " + file);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    		// Note that the calls are simple BL without pushing the return
    		// address, so we use LR directly.
    		//
    		// The kernel helpers are frameless leaf functions, so SP and
    		// LR are not touched.
    		frame.pc = frame.lr
    		frame.lr = 0
    	}
    
    	f := findfunc(frame.pc)
    	if !f.valid() {
    		if flags&unwindSilentErrors == 0 {
    			print("runtime: g ", gp.goid, " gp=", gp, ": unknown pc ", hex(frame.pc), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

           // Bind global datepicker mousedown for hiding and
    L1113:            $(document)
    L1114:              .on('mousedown.daterangepicker', this._outsideClickProxy)
    L1115:              // also support mobile devices
    L1116:              .on('touchend.daterangepicker', this._outsideClickProxy)
    L1117:              // also explicitly play nice with Bootstrap dropdowns, which stopPropagation when clicking them
    L1118:              .on('click.daterangepicker', '[data-toggle=dropdown]', this._outsideClickProxy)
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
Back to top