Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 212 for xremove (0.3 sec)

  1. src/cmd/cgo/gcc.go

    	}
    	if quote != 0 {
    		err = errors.New("unclosed quote")
    	} else if escaped {
    		err = errors.New("unfinished escaping")
    	}
    	return args, err
    }
    
    // Translate rewrites f.AST, the original Go input, to remove
    // references to the imported package C, replacing them with
    // references to the equivalent Go types, functions, and variables.
    func (p *Package) Translate(f *File) {
    	for _, cref := range f.Ref {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. configure.py

      Args:
        target: items to link to.
        link_name: name of the link.
      """
      try:
        os.symlink(target, link_name)
      except OSError as e:
        if e.errno == errno.EEXIST:
          os.remove(link_name)
          os.symlink(target, link_name)
        else:
          raise e
    
    
    def write_to_bazelrc(line):
      with open(_TF_BAZELRC, 'a') as f:
        f.write(line + '\n')
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		// as it is used without locking elsewhere.
    		storageMap2 := storageMap.clone()
    
    		// Remove from the CRD info map and store the map
    		delete(storageMap2, uid)
    		r.customStorage.Store(storageMap2)
    
    		// Tear down the old storage
    		go r.tearDown(oldInfo)
    	}
    }
    
    // removeDeadStorage removes REST storage that isn't being used
    func (r *crdHandler) removeDeadStorage() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    		sub := re.Sub[0]
    		if sub.Op == OpEmptyMatch {
    			return nil
    		}
    		return sub
    	}
    	return re
    }
    
    // removeLeadingRegexp removes the leading regexp in re.
    // It returns the replacement for re.
    // If reuse is true, it passes the removed regexp (if no longer needed) to p.reuse.
    func (p *parser) removeLeadingRegexp(re *Regexp, reuse bool) *Regexp {
    	if re.Op == OpConcat && len(re.Sub) > 0 {
    		if reuse {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. tests/test_application.py

                                        "title": "Item Id",
                                    }
                                )
                                # TODO: remove when deprecating Pydantic v1
                                | IsDict({"title": "Item Id", "type": "string"}),
                            }
                        ],
                    }
                },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        public static void propagateSystemProperty(String name) {
            PROPAGATED_SYSTEM_PROPERTIES.add(name);
        }
    
        public static void doNotPropagateSystemProperty(String name) {
            PROPAGATED_SYSTEM_PROPERTIES.remove(name);
        }
    
        private final Logger logger;
    
        protected final IntegrationTestBuildContext buildContext;
    
        private final Set<File> isolatedDaemonBaseDirs = new HashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // List of certSigners to allow "approve" action in the ClusterRole
      repeated string certSigners = 68;
    
      // TODO: remove this?
      // No longer used.
      string configRootNamespace = 50;
    
      // Controls whether the server-side validation is enabled.
      google.protobuf.BoolValue configValidation = 3;
    
      // TODO: remove this?
      // No longer used.
      repeated string defaultConfigVisibilitySettings = 52;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s.assertAddresses(t, s.addrXdsName("10.0.0.1"), "pod1", "pod2", "pod4", "svc1")
    	s.assertEvent(t, s.podXdsName("pod4"))
    	s.clearEvents()
    
    	// Delete it, should remove from the Service as well
    	s.deletePod(t, "pod4")
    	s.assertAddresses(t, "", "pod1", "pod2", "pod3", "svc1")
    	s.assertAddresses(t, s.addrXdsName("10.0.0.1"), "pod1", "pod2", "svc1")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/mips/asm0.go

    		if p.As == AJAL {
    			rel.Type = objabi.R_CALLMIPS
    		} else {
    			rel.Type = objabi.R_JMPMIPS
    		}
    
    	case 12: /* movbs r,r */
    		// NOTE: this case does not use REGTMP. If it ever does,
    		// remove the NOTUSETMP flag in optab.
    		v := 16
    		if p.As == AMOVB {
    			v = 24
    		}
    		o1 = OP_SRR(c.opirr(ASLL), uint32(v), p.From.Reg, p.To.Reg)
    		o2 = OP_SRR(c.opirr(ASRA), uint32(v), p.To.Reg, p.To.Reg)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_test.go

    	cert := testRSACertificate
    	if len(test.cert) > 0 {
    		cert = test.cert
    	}
    	certPath := tempFile(string(cert))
    	defer os.Remove(certPath)
    
    	var key any = testRSAPrivateKey
    	if test.key != nil {
    		key = test.key
    	}
    	derBytes, err := x509.MarshalPKCS8PrivateKey(key)
    	if err != nil {
    		panic(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top