Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for downstream (0.26 sec)

  1. guava-gwt/pom.xml

        </dependency>
        <!-- We redeclare the j2objc-annotations dependency from `guava`: Our Gradle
             Module Metadata hides the dependency declared in `guava` from runtime
             configurations downstream, and GWT uses the runtime configuration for
             its builds. Thus, GWT doesn't get j2objc-annotations transitively, in
             contrast to the other deps of `guava`, which it does get transitively.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

         * for common usage.  In practice, running test tasks tends to take longer than building a jar; especially as a project matures. If tasks
         * in downstream projects require the jar from this project, and the jar and test tasks in this project are available to be run in either order,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/graph.go

    	neighborsToRemove := []graph.Node{}
    	edgesToRemoveFromIndexes := []graph.Edge{}
    	g.graph.VisitFrom(vertex, func(neighbor graph.Node) bool {
    		// this downstream neighbor has only one edge (which must be from us), so remove them as well
    		if g.graph.Degree(neighbor) == 1 {
    			neighborsToRemove = append(neighborsToRemove, neighbor)
    		}
    		return true
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                failure.assertHasDescription('Task :a has both local state and destroyables defined.  A task can define either local state or destroyables, but not both.')
            }
        }
    
        @Timeout(30)
        def "downstream dependencies of a failed task do not block destroyer to run"() {
            buildFile << """
                def mutatedFile = file("build/mutated.txt")
                def destroyer = tasks.register("destroyer") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_logging.go

    			"upstream_transport_failure_reason": {Kind: &structpb.Value_StringValue{StringValue: "%UPSTREAM_TRANSPORT_FAILURE_REASON%"}},
    		},
    	}
    
    	// State logged by the metadata exchange filter about the upstream and downstream service instances
    	// We need to propagate these as part of access log service stream
    	// Logging them by default on the console may be an issue as the base64 encoded string is bound to be a big one.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

        return false;
      }
    
      SmallVector<Operation*> current_layer_descendants;
      SmallVector<Operation*> next_layer_descendants;
      int current_depth = 0;
      current_layer_descendants.push_back(op);
      // BFS downstream ops for current user.
      // If any one of the descendants meet one of the three conditions, we return
      // false for the current value:
      // 1: The descendant is not in the ops_to_add.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

                                  description: Specifies which protocol to use for tunneling
                                    the downstream connection.
                                  type: string
                                targetHost:
                                  description: Specifies a host to which the downstream
                                    connection is tunneled.
                                  type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  8. cmd/batch-expire.go

    		if versionsCount <= matchedFilter.Purge.RetainVersions {
    			continue // retain versions
    		}
    		toDel = append(toDel, expireObjInfo{
    			ObjectInfo: result.Item,
    		})
    	}
    	// Send any remaining objects downstream
    	if len(toDel) > 0 {
    		select {
    		case <-ctx.Done():
    		case expireCh <- toDel:
    		}
    	}
    	xioutil.SafeClose(expireCh)
    
    	<-expireDoneCh // waits for the expire goroutine to complete
    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. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            withBuildCache().run "producer", "--rerun-tasks"
    
            when:
            withBuildCache().run "producer"
            then:
            skipped ":producer"
        }
    
        def "downstream task stays cached when upstream task is loaded from cache"() {
            file("input.txt").text = "input"
            buildFile << defineProducerTask()
            buildFile << defineConsumerTask()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis.cc

    // processing the graph per root frame at a time and guarantees that when a root
    // frame is being processed, nodes in the downstream frames have not yet been
    // processed.  This property is important because we need to process an entire
    // frame to know whether the optimistic mode converges or not.  In other words,
    // nodes in the downstream frames shall not be populated until all of its
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top