Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for costly (0.24 sec)

  1. Makefile.core.mk

    endif
    
    # List of all binaries to build
    # We split the binaries into "agent" binaries and standard ones. This corresponds to build "agent".
    # This allows conditional compilation to avoid pulling in costly dependencies to the agent, such as XDS and k8s.
    AGENT_BINARIES:=./pilot/cmd/pilot-agent
    STANDARD_BINARIES:=./istioctl/cmd/istioctl \
      ./pilot/cmd/pilot-discovery \
      ./pkg/test/echo/cmd/client \
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed May 08 20:25:15 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  2. architecture/build-state-model.md

    The build session state also includes "cross session" state that is shared with any "nested" sessions that need to be created.
    This only happens when the `GradleBuild` task is used. You can mostly ignore the distinction between "cross session" and "build session" state.
    
    ### Build tree state
    
    "Build tree" is another name for the build definition.
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sun May 05 22:45:11 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    including but not limited to: User Manual, DSL Reference and Javadoc.
    This information is used to generate documentation for each Gradle version
    on [docs.gradle.org](https://docs.gradle.org/).
    The documentation is mostly implemented in Asciidoc
    though we use GitHub-flavored Markdown for internal documentation too.
    
    You can generate docs by running `./gradlew :docs:docs`.
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sat May 04 07:43:02 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  4. cni/pkg/iptables/iptables.go

    	iptablesBuilder := builder.NewIptablesRuleBuilder(ipbuildConfig(cfg.cfg))
    
    	// Insert jumps to our custom chains
    	// This is mostly just for visual tidiness and cleanup, as we can delete the secondary chains and jumps
    	// without polluting the main table too much.
    
    	// -t mangle -A PREROUTING -j ISTIO_PRERT
    	iptablesBuilder.AppendRule(
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue May 07 19:54:50 GMT 2024
    - 19.7K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    		}
    	}
    	if !readData {
    		for i := range v2bufs {
    			metaDataPoolPut(v2bufs[i])
    		}
    	}
    
    	// Return all the metadata.
    	return metaFileInfos, errs
    }
    
    // Checking if an object is dangling costs some IOPS; hence implementing this function
    // which decides which condition it is useful to check if an object is dangling
    //
    //	  errs: errors from reading xl.meta in all disks
    //	   err: reduced errs
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 77.2K bytes
    - Viewed (2)
Back to top