Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 106 for onDone (0.24 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            setupBuildWithArtifactTransformOfProjectDependencies()
            buildFile << """
                abstract class MakeRed implements TransformAction<TransformParameters.None> {
                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInputArtifact()
    
                    void transform(TransformOutputs outputs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                import org.gradle.internal.operations.*
                import org.gradle.internal.taskgraph.*
    
                abstract class LoggingListener implements BuildOperationListener, BuildService<BuildServiceParameters.None> {
                    void started(BuildOperationDescriptor buildOperation, OperationStartEvent startEvent) { throw new RuntimeException() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  3. common/scripts/metallb-native.yaml

      rules:
      - apiGroups:
        - metallb.io
        apiVersions:
        - v1beta2
        operations:
        - CREATE
        - UPDATE
        resources:
        - bgppeers
      sideEffects: None
    - admissionReviewVersions:
      - v1
      clientConfig:
        service:
          name: webhook-service
          namespace: metallb-system
          path: /validate-metallb-io-v1beta1-bfdprofile
      failurePolicy: Fail
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. src/net/http/fs_test.go

    			serveETag: `"foo"`,
    			reqHeader: map[string]string{
    				"If-None-Match": `"foo"`,
    			},
    			wantStatus: 304,
    		},
    		"not_modified_etag_no_seek": {
    			content:   panicOnSeek{nil}, // should never be called
    			serveETag: `W/"foo"`,        // If-None-Match uses weak ETag comparison
    			reqHeader: map[string]string{
    				"If-None-Match": `"baz", W/"foo"`,
    			},
    			wantStatus: 304,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    networks to be used by the Split Horizon EDS. meshNetworks: |- networks: {} mesh: |- accessLogEncoding: TEXT accessLogFile: "" accessLogFormat: "" defaultConfig: concurrency: 2 configPath: ./etc/istio/proxy connectTimeout: 10s controlPlaneAuthPoli: NONE discoveryAddress: istiod-1-6-11.istio-system.svc:15012 drainDuration: 45s parentShutdownDurati: 1m0s proxyAdminPort: 15000 proxyMetadata: DNS_AGENT: "" serviceCluster: istio-proxy tracing: zipkin: address: zipkin.istio-system:9411 disableMixerHttpRepo:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    )
    
    // Enum value maps for TunnelProtocol.
    var (
    	TunnelProtocol_name = map[int32]string{
    		0: "NONE",
    		1: "HBONE",
    	}
    	TunnelProtocol_value = map[string]int32{
    		"NONE":  0,
    		"HBONE": 1,
    	}
    )
    
    func (x TunnelProtocol) Enum() *TunnelProtocol {
    	p := new(TunnelProtocol)
    	*p = x
    	return p
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/ajax/js/jquery-2.1.1.min.js

    c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=L.get(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&S(d)&&(f[g]=L.access(d,"olddisplay",tb(d.nodeName)))):(e=S(d),"none"===c&&e||L.set(d,"olddisplay",e?c:n.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=xb(a,"opacity");return""===c?"1...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 82.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    			// if service does not have exportTo *, but has exportTo ~ - i.e. not visible to anyone, ignore all exportTos.
    			// if service has exportTo ., replace with current namespace.
    			if s.Attributes.ExportTo.Contains(visibility.Public) {
    				ps.ServiceIndex.public = append(ps.ServiceIndex.public, s)
    				continue
    			} else if s.Attributes.ExportTo.Contains(visibility.None) {
    				continue
    			}
    			// . or other namespaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     */
    class HttpUrl private constructor(
      /** Either "http" or "https". */
      @get:JvmName("scheme") val scheme: String,
      /**
       * The decoded username, or an empty string if none is present.
       *
       * | URL                              | `username()` |
       * | :------------------------------- | :----------- |
       * | `http://host/`                   | `""`         |
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  10. tests/query_test.go

    				CheckUser(t, models3[idx], user)
    			})
    		}
    	}
    
    	var none []User
    	if err := DB.Where("name in (?)", []string{}).Find(&none).Error; err != nil || len(none) != 0 {
    		t.Errorf("errors happened when query find with in clause and zero length parameter: %v, length: %v", err, len(none))
    	}
    }
    
    func TestQueryWithAssociation(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
Back to top