Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,229 for noreplace (0.6 sec)

  1. pom.xml

    										<include>tomcat/**</include>
    									</includes>
    								</source>
    							</sources>
    						</mapping>
    						<mapping>
    							<directory>${packaging.fess.conf.dir}</directory>
    							<configuration>noreplace</configuration>
    							<sources>
    								<source>
    									<location>${project.basedir}/src/main/assemblies/files</location>
    									<includes>
    										<include>logging.properties</include>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  2. src/strings/replace.go

    			// to avoid utf8 encoding of o.
    			// E. g. byte(150) produces string of length 2.
    			r.toReplace = append(r.toReplace, string([]byte{o}))
    		}
    		r.replacements[o] = []byte(n)
    
    	}
    	return &r
    }
    
    // Replace returns a copy of s with all replacements performed.
    func (r *Replacer) Replace(s string) string {
    	r.once.Do(r.buildOnce)
    	return r.r.Replace(s)
    }
    
    // WriteString writes s to w with all replacements performed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. releasenotes/notes/replace-virtualhost.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issues:
    - https://github.com/istio/istio/issues/36415
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 02:02:53 UTC 2022
    - 202 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_cmd_v1.0.0-replace.txt

    example.com/cmd contains main packages.
    
    -- .info --
    {"Version":"v1.0.0-replace"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    
    replace rsc.io/quote => rsc.io/quote v1.5.2
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    
    replace rsc.io/quote => rsc.io/quote v1.5.2
    -- a/a.go --
    package main
    
    func main() {}
    -- b/b.go --
    package main
    
    func main() {}
    -- err/err.go --
    package err
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 12:45:59 UTC 2020
    - 397 bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/envoy-filter-replace-operation.yaml

    # If the patch operation is REPLACE but priority is set, then the analyzer will not do anything
    # If the patch operation is REPLACE but the applyTo is not HTTP_FILTER or NETWORK_FILTER, then an error will occur
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-replace-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews1
      priority: 10
      configPatches:
      - applyTo: CLUSTER
        match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. dbflute_fess/playsql/replace-schema.sql

    jflute <******@****.***> 1437804256 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 449 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	w.startIndex = w.endIndex
    	w.removedEventSinceRelist = false
    
    	if err := w.store.Replace(toReplace, resourceVersion); err != nil {
    		return err
    	}
    	w.listResourceVersion = version
    	w.resourceVersion = version
    	if w.onReplace != nil {
    		w.onReplace()
    	}
    	w.cond.Broadcast()
    
    	metrics.RecordResourceVersion(w.groupResource.String(), version)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. hack/update-vendor.sh

         # print lines between 'replace (' ... ')' lines
         /^replace [(]/      { inreplace=1; next                   }
         inreplace && /^[)]/ { inreplace=0; next                   }
         inreplace           { print > \"${go_mod_replace}\"; next }
    
         # print ungrouped replace directives with the replace directive trimmed
         /^replace [^(]/ { sub(/^replace /,\"\"); print > \"${go_mod_replace}\"; next }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. operator/pkg/util/merge_iop.go

    	IngressPorts                     []map[string]any                    `json:"ingressPorts" patchStrategy:"replace"`
    	AdditionalContainers             []map[string]any                    `json:"additionalContainers" patchStrategy:"replace"`
    	ConfigVolumes                    []map[string]any                    `json:"configVolumes" patchStrategy:"replace"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. samples/addons/prometheus.yaml

          - action: replace
            source_labels:
            - __meta_kubernetes_namespace
            target_label: namespace
          - action: replace
            source_labels:
            - __meta_kubernetes_service_name
            target_label: service
          - action: replace
            source_labels:
            - __meta_kubernetes_pod_node_name
            target_label: node
        - honor_labels: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top