Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for bundles (0.4 sec)

  1. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            withLibraryDependencies<DependencyRemovalByNameRule>(
                "xyz.rogfam:littleproxy",
                setOf("barchart-udt-bundle", "guava", "commons-cli")
            )
    
            // TODO: Gradle profiler should use the bundled tooling API.
            //   This should actually be handled by conflict resolution, though it doesn't seem to work.
            //   See https://github.com/gradle/gradle/issues/12002.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/README.md

    # Grafana Dashboards
    
    This folder contains Istio's official Grafana dashboards.
    These get publish to [Grafana](https://grafana.com/orgs/istio/dashboards) during release, and are bundled into our
    [Grafana sample](../../../samples/addons/grafana.yaml).
    
    ## Jsonnet
    
    Newer dashboards are generated with [Jsonnet](https://jsonnet.org/) with the [Grafonnet](https://grafana.github.io/grafonnet/index.html).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  3. cni/cmd/istio-cni/main.go

    		return err
    	}
    	defer func() {
    		// Log sync will send logs to install-cni container via UDS.
    		// We don't need a timeout here because underlying the log pkg already handles it.
    		// this may fail, but it should be safe to ignore according
    		// to https://github.com/uber-go/zap/issues/328
    		_ = log.Sync()
    	}()
    
    	// TODO: implement plugin version
    	funcs := skel.CNIFuncs{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/webhook.go

    	if strings.HasPrefix(m, "http: TLS handshake error") && strings.HasSuffix(m, ": EOF") {
    		istiolog.Debug(m)
    	} else {
    		istiolog.Info(m)
    	}
    	return len(p), nil
    }
    
    // initSSecureWebhookServer handles initialization for the HTTPS webhook server.
    // If https address is off the injection handlers will be registered on the main http endpoint, with
    // TLS handled by a proxy/gateway in front of Istiod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsParallelIntegrationTest.groovy

            then:
            noExceptionThrown()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/24887")
        @Issue("https://github.com/gradle/gradle/issues/27099")
        def "build events listener service handles all events before it is closed"() {
            buildFile """
                import ${BuildEventsListenerRegistry.name}
                import ${OperationCompletionListener.name}
                import ${FinishEvent.name}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementImporter.java

    import org.apache.maven.api.services.ModelProblem.Version;
    import org.apache.maven.api.services.ModelProblemCollector;
    import org.apache.maven.api.services.model.*;
    
    /**
     * Handles the import of dependency management from other models into the target model.
     *
     */
    @Named
    @Singleton
    public class DefaultDependencyManagementImporter implements DependencyManagementImporter {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/composition/DefaultDependencyManagementImporter.java

    import org.apache.maven.model.building.ModelProblem;
    import org.apache.maven.model.building.ModelProblemCollector;
    import org.apache.maven.model.building.ModelProblemCollectorRequest;
    
    /**
     * Handles the import of dependency management from other models into the target model.
     *
     */
    @Named
    @Singleton
    public class DefaultDependencyManagementImporter implements DependencyManagementImporter {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	for i := range d.a {
    		d.a[i] = 0
    	}
    	d.state = spongeAbsorbing
    	d.i, d.n = 0, 0
    }
    
    func (d *state) clone() *state {
    	ret := *d
    	return &ret
    }
    
    // permute applies the KeccakF-1600 permutation. It handles
    // any input-output buffering.
    func (d *state) permute() {
    	switch d.state {
    	case spongeAbsorbing:
    		// If we're absorbing, we need to xor the input into the state
    		// before applying the permutation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/sync/rwmutex.go

    		}
    		if rw.readerCount.CompareAndSwap(c, c+1) {
    			if race.Enabled {
    				race.Enable()
    				race.Acquire(unsafe.Pointer(&rw.readerSem))
    			}
    			return true
    		}
    	}
    }
    
    // RUnlock undoes a single [RWMutex.RLock] call;
    // it does not affect other simultaneous readers.
    // It is a run-time error if rw is not locked for reading
    // on entry to RUnlock.
    func (rw *RWMutex) RUnlock() {
    	if race.Enabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top