Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for dropg (0.07 sec)

  1. src/runtime/proc.go

    	}
    
    	execute(gp, inheritTime)
    }
    
    // dropg removes the association between m and the current goroutine m->curg (gp for short).
    // Typically a caller sets gp's status away from Grunning and then
    // immediately calls dropg to finish the job. The caller is also responsible
    // for arranging that gp will be restarted using ready at an
    // appropriate time. After calling dropg and arranging for gp to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		add element ip kube-proxy no-endpoint-nodeports { tcp . 3001 comment "ns2/svc2:p80" : drop }
    		add element ip kube-proxy no-endpoint-services { 1.2.3.4 . tcp . 80 comment "ns2/svc2:p80" : drop }
    		add element ip kube-proxy no-endpoint-services { 192.168.99.22 . tcp . 80 comment "ns2/svc2:p80" : drop }
    
    		# svc3
    		add chain ip kube-proxy service-4AT6LBPK-ns3/svc3/tcp/p80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                  capabilities:
                {{- if not .Values.istio_cni.enabled }}
                    add:
                    - NET_ADMIN
                    - NET_RAW
                {{- end }}
                    drop:
                    - ALL
                {{- if not .Values.istio_cni.enabled }}
                  readOnlyRootFilesystem: false
                  runAsGroup: 0
                  runAsNonRoot: false
                  runAsUser: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // so omitting @v will drop existing replacements for specific versions.
    //
    // The -dropreplace=old[@v] flag drops a replacement of the given
    // module path and version pair. If the @v is omitted, a replacement without
    // a version on the left side is dropped.
    //
    // The -retract=version and -dropretract=version flags add and drop a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TFTPU::CreateTPUUpdateEmbeddingEnqueueOpInputsPass()";
    }
    
    def DropWhileShapeInvariantPass : Pass<"tf-drop-while-shape-invariant", "mlir::func::FuncOp"> {
      let summary = "Drop `shape_invariant` attribute from While/WhileRegion ops.";
    
      let description = [{
        Drop `shape_invariant` attribute from tf.While and tf.WhileRegion op. This
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

      sysctl -w net.ipv4.conf.all.route_localnet=1
    
      # The GCI image has host firewall which drop most inbound/forwarded packets.
      # We need to add rules to accept all TCP/UDP/ICMP/SCTP packets.
      if iptables -w -L INPUT | grep "Chain INPUT (policy DROP)" > /dev/null; then
        echo "Add rules to accept all inbound TCP/UDP/ICMP packets"
        iptables -w -A INPUT -w -p TCP -j ACCEPT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    			}
    			for _, c := range tc.spec.Containers {
    				if c.SecurityContext != nil {
    					t.Errorf("VisitContainers() did not drop SecurityContext for container %q", c.Name)
    				}
    			}
    			for _, c := range tc.spec.InitContainers {
    				if c.SecurityContext != nil {
    					t.Errorf("VisitContainers() did not drop SecurityContext for init container %q", c.Name)
    				}
    			}
    			for _, c := range tc.spec.EphemeralContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    	p.SysoFiles = pp.SysoFiles
    	if cfg.BuildMSan {
    		// There's no way for .syso files to be built both with and without
    		// support for memory sanitizer. Assume they are built without,
    		// and drop them.
    		p.SysoFiles = nil
    	}
    	p.CgoCFLAGS = pp.CgoCFLAGS
    	p.CgoCPPFLAGS = pp.CgoCPPFLAGS
    	p.CgoCXXFLAGS = pp.CgoCXXFLAGS
    	p.CgoFFLAGS = pp.CgoFFLAGS
    	p.CgoLDFLAGS = pp.CgoLDFLAGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    }} {{- else if (semverCompare ">=1.22-0" .Capabilities.KubeVersion.GitVersion) }} # Safe since 1.22: https://github.com/kubernetes/kubernetes/pull/103326 capabilities: drop: - ALL allowPrivilegeEscala: false privileged: false readOnlyRootFilesyst: true runAsUser: 1337 runAsGroup: 1337 runAsNonRoot: true {{- else }} capabilities: drop: - ALL add: - NET_BIND_SERVICE runAsUser: 0 runAsGroup: 1337 runAsNonRoot: false allowPrivilegeEscala: true readOnlyRootFilesyst: true {{- end }} env: {{- with .Values.networkGateway...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    		}
    		objInfo.ETag = getDecryptedETag(r.Header, objInfo, false)
    	}
    
    	if r.Header.Get(xhttp.AmzChecksumMode) == "ENABLED" && rs == nil {
    		// AWS S3 silently drops checksums on range requests.
    		hash.AddChecksumHeader(w, objInfo.decryptChecksums(opts.PartNumber, r.Header))
    	}
    
    	if err = setObjectHeaders(ctx, w, objInfo, rs, opts); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top