Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 98 for patching (0.23 sec)

  1. platforms/core-runtime/launcher/build.gradle.kts

        api(project(":core-api"))
        api(project(":daemon-protocol"))
        api(project(":enterprise-logging"))
        api(project(":execution"))
        api(project(":file-collections"))
        api(project(":file-watching"))
        api(project(":files"))
        api(project(":hashing"))
        api(projects.instrumentationAgentServices)
        api(project(":stdlib-java-extensions"))
        api(project(":jvm-services"))
        api(project(":logging"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    // Interface can be implemented by anything that knows how to watch and report changes.
    type Interface interface {
    	// Stop tells the producer that the consumer is done watching, so the
    	// producer should stop sending events and close the result channel. The
    	// consumer should keep watching for events until the result channel is
    	// closed.
    	//
    	// Because some implementations may create channels when constructed, Stop
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  3. src/cmd/compile/internal/types2/unify.go

    				// defined type. This ensures that in a series of types, all matching against the
    				// same type parameter, we infer a defined type if there is one, independent of
    				// order. Type inference or assignment may fail, which is ok.
    				// Selecting a defined type, if any, ensures that we don't lose the type name;
    				// and since we have inexact unification, a value of equally named or matching
    				// undefined type remains assignable (go.dev/issue/43056).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. gradle.properties

    # Reduce Xmx after https://github.com/gradle/gradle-private/issues/4168 is resolved
    org.gradle.jvmargs=-Xmx2700m -XX:MaxMetaspaceSize=768m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
    org.gradle.parallel=true
    org.gradle.caching=true
    org.gradle.configuration-cache=true
    systemProp.gradle.publish.skip.namespace.check=true
    # Kotlin DSL settings
    org.gradle.kotlin.dsl.allWarningsAsErrors=true
    # Kotlin settings
    kotlin.incremental.useClasspathSnapshot=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/certcontroller.go

    						keyCertTimerC = time.After(watchDebounceDelay)
    					}
    				case err := <-s.fileWatcher.Errors(tlsOptions.CertFile):
    					log.Errorf("error watching %v: %v", tlsOptions.CertFile, err)
    				case err := <-s.fileWatcher.Errors(tlsOptions.KeyFile):
    					log.Errorf("error watching %v: %v", tlsOptions.KeyFile, err)
    				case <-stop:
    					return
    				}
    			}
    		}()
    		return nil
    	})
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

                    }
    
                    public static abstract class SomeTask extends ${ConventionTask.name} {
                        // Configuration cache only supports convention mapping for fields with matching names.
                        private $typeName inputProperty;
                        ${type.primitive ? '' : "@${Optional.name}"}
                        @${Input.name}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/build.gradle.kts

        doFirst {
            // On daemon crash, read-only cache tests can leave read-only files around.
            // clean now takes care of those files as well
            testFiles.get().asFileTree.matching {
                include("**/read-only-cache/**")
            }.visit { this.file.setWritable(true) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. cmd/batch-expire.go

    	"gopkg.in/yaml.v3"
    )
    
    // expire: # Expire objects that match a condition
    //   apiVersion: v1
    //   bucket: mybucket # Bucket where this batch job will expire matching objects from
    //   prefix: myprefix # (Optional) Prefix under which this job will expire objects matching the rules below.
    //   rules:
    //     - type: object  # regular objects with zero or more older versions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

      auto status_or_device_coodinates =
          tensorflow::GetDeviceCoordinates(device_assignment_attr);
      if (!status_or_device_coodinates.ok())
        return cluster.emitError()
               << "error in fetching tpu device coordinates: "
               << status_or_device_coodinates.status().message();
    
      status_or_tpu_device_assignment =
          tensorflow::GetTPUCompilationAndExecutionDevices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/destination_rule.go

    				// if the selectors do not match
    				continue
    			}
    			// If both the destination rules are without a workload selector or with matching workload selectors, simply merge them.
    			// If the incoming rule has a workload selector, it has to be merged with the existing rules with workload selector, and
    			// at the same time added as a unique entry in the processedDestRules.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top