Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 257 for modzip (0.12 sec)

  1. src/syscall/zsysnum_freebsd_arm.go

    	SYS_FHSTAT                   = 299 // { int fhstat(const struct fhandle *u_fhp, \
    	SYS_MODNEXT                  = 300 // { int modnext(int modid); }
    	SYS_MODSTAT                  = 301 // { int modstat(int modid, \
    	SYS_MODFNEXT                 = 302 // { int modfnext(int modid); }
    	SYS_MODFIND                  = 303 // { int modfind(const char *name); }
    	SYS_KLDLOAD                  = 304 // { int kldload(const char *file); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/archiveNaming/kotlin/build.gradle.kts

    // tag::zip-task[]
    plugins {
        base
    }
    
    version = "1.0"
    
    tasks.register<Zip>("myZip") {
        from("somedir")
        val projectDir = layout.projectDirectory.asFile
        doLast {
            println(archiveFileName.get())
            println(destinationDirectory.get().asFile.relativeTo(projectDir))
            println(archiveFile.get().asFile.relativeTo(projectDir))
        }
    }
    // end::zip-task[]
    
    // tag::zip-task-with-custom-base-name[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 615 bytes
    - Viewed (0)
  3. pkg/kube/controllers/example_test.go

    	pod := c.pods.Get(key.Name, key.Namespace)
    	if pod == nil {
    		log.Infof("pod deleted")
    	} else {
    		c.events.Inc()
    		fmt.Println("pod has IP", pod.Status.PodIP) // Just for our test, normally use log.Info
    		log.Infof("pod has IP %v", pod.Status.PodIP)
    	}
    	// We never have an error for this controller.
    	// If we did, it would be retried (with backoff), based on our controllers.WithMaxAttempts argument.
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/files/archiveNaming/groovy/build.gradle

    // tag::zip-task[]
    plugins {
        id 'base'
    }
    
    version = 1.0
    
    tasks.register('myZip', Zip) {
        from 'somedir'
        File projectDir = layout.projectDirectory.asFile
        doLast {
            println archiveFileName.get()
            println projectDir.relativePath(destinationDirectory.get().asFile)
            println projectDir.relativePath(archiveFile.get().asFile)
        }
    }
    // end::zip-task[]
    
    // tag::zip-task-with-custom-base-name[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 617 bytes
    - Viewed (0)
  5. samples/grpc-echo/grpc-echo.yaml

              - --crt=/cert.crt
              - --key=/cert.key
              env:
              - name: INSTANCE_IP
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: status.podIP
              image: gcr.io/istio-testing/app:latest
              imagePullPolicy: Always
              livenessProbe:
                failureThreshold: 10
                initialDelaySeconds: 10
                periodSeconds: 10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. releasenotes/notes/inbound-passthrough.yaml

          without Istio:
    
          * Applications that bind to `localhost` will be exposed to external pods.
          * Applications that bind to `<POD_IP>` will not be exposed to external pods.
    
          The latter is a common source of friction when adopting Istio, in particular with stateful services where this is common.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_FHOPEN                 = 298 // { int fhopen(const struct fhandle *u_fhp, int flags); }
    	SYS_MODNEXT                = 300 // { int modnext(int modid); }
    	SYS_MODSTAT                = 301 // { int modstat(int modid, struct module_stat* stat); }
    	SYS_MODFNEXT               = 302 // { int modfnext(int modid); }
    	SYS_MODFIND                = 303 // { int modfind(const char *name); }
    	SYS_KLDLOAD                = 304 // { int kldload(const char *file); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/cni-watcher_test.go

    	pod := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "pod-bingo",
    			Namespace: "funkyns",
    		},
    		Spec: corev1.PodSpec{
    			NodeName: NodeName,
    		},
    		Status: corev1.PodStatus{
    			PodIP: fakePodIP,
    		},
    	}
    	ns := &corev1.Namespace{ObjectMeta: metav1.ObjectMeta{Name: "funkyns"}}
    
    	client := kube.NewFakeClient(ns, pod)
    
    	// We are expecting at most 1 calls to the mock, wait for them
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/stats_inclusion_golden.json

    StatTags":"dlp_status,dlp_error","sidecar.istio.io/statsHistogramBuckets":"{\"istio\":[1,5,10,50,100,500,1000,5000,10000],\"envoy\":[1,5,10,25,50,100,250,500,1000,2500,5000,10000]}","sidecar.istio.io/statsInclusionPrefixes":"prefix1,prefix2,http.{pod_ip}_","sidecar.istio.io/statsInclusionRegexps":"http.[0-9]*\\.[0-9]*\\.[0-9]*\\.[0-9]*_8080.downstream_rq_time","sidecar.istio.io/statsInclusionSuffixes":"suffix1,suffix2,upstream_rq_1xx,upstream_rq_2xx,upstream_rq_3xx,upstream_rq_4xx,upstream_rq_5x...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. pkg/test/framework/components/ambient/waypoint.go

    	inbound  istioKube.PortForwarder
    	outbound istioKube.PortForwarder
    	pod      v1.Pod
    }
    
    func (k kubeComponent) Namespace() namespace.Instance {
    	return k.ns
    }
    
    func (k kubeComponent) PodIP() string {
    	return k.pod.Status.PodIP
    }
    
    func (k kubeComponent) Inbound() string {
    	return k.inbound.Address()
    }
    
    func (k kubeComponent) Outbound() string {
    	return k.outbound.Address()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top