Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 160 for unhelpful (0.11 sec)

  1. README.md

    jcifs-ng will be a proper choice for many users. 
    There are a lot of SMB devices in the world.
    Some of them only work with the old jcifs library.
    If you want to support many SMB devices, CodeLibs jcifs library will be helpful.
    For example, since [Fess](https://github.com/codelibs/fess) needs to support many SMB devices, it uses this library.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed May 10 09:29:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/tflite-converter-issue.md

    ### 4. (optional) RNN conversion support
    If converting TF RNN to TFLite fused RNN ops, please prefix [RNN] in the title.
    
    ### 5. (optional) Any other info / logs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 15 03:35:58 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_identity_op_pattern.cc

        // restrictive.
        if (user->getDialect()->getNamespace() != "tf") {
          return failure();
        }
        // Identity ops of returning values might be helpful for some other
        // compilers, so avoid removing these Identity ops.
        if (user->hasTrait<OpTrait::IsTerminator>()) {
          return failure();
        }
      }
    
      rewriter.replaceOp(identity, identity.getInput());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 15 06:13:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. pkg/fuzz/README.md

          WorkloadLabels:  node.Labels,
        }
        option := fuzz.Struct[Option](fg)
    
        // Run our actual test code. In this case, we are just checking nothing crashes.
        // In other tests, explicit assertions may be helpful.
        policies := push.AuthzPolicies.ListAuthorizationPolicies(selectionOpts)
        New(bundle, push, policies, option).BuildHTTP()
      })
    }
    ```
    
    ## Running tests
    
    Fuzz tests can be run using standard Go tooling:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 21:25:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. samples/external/README.md

    Running `kubectl create -f pypi.yaml` allows pods to update Python libraries using `pip`.
    
    It is not a best practice to enable pods to update libraries dynamically.
    We are providing these samples
    because they have proven to be helpful with interactive troubleshooting.  Security minded clusters should only allow traffic to service dependencies such as cloud
    services.
    
    ### Enable communication by default
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

    import spock.lang.Issue
    
    class TestInputAnnotationFailuresIntegrationTest extends AbstractIntegrationSpec implements ValidationMessageChecker {
        def "using @Input annotation on #elementType file elements fails validation with helpful error message"() {
            given:
            buildFile << """
                import groovy.transform.CompileStatic
    
                plugins {
                    id 'java'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/namespacedname.go

    func (n NamespacedName) String() string {
    	return n.NamespaceName() + "/" + n.Name
    }
    
    // PrefixString returns a string in the form of <name>.<prefix>. This is helpful for
    // providing more stable test names.
    func (n NamespacedName) PrefixString() string {
    	if n.Namespace == nil {
    		return n.Name
    	}
    	return n.Name + "." + n.Namespace.Prefix()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    	// for duplicate registration.
    	originatingStack string
    
    	// done will be closed when the postHook is finished
    	done chan struct{}
    }
    
    type PostStartHookConfigEntry struct {
    	hook PostStartHookFunc
    	// originatingStack holds the stack that registered postStartHooks. This allows us to show a more helpful message
    	// for duplicate registration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

            programmers everywhere. If you can give enough detail such that any of us can imagine coming
            across a similar need in our own work, that's extremely helpful in studying how broadly
            useful the proposed change will be.
    
      - type: textarea
        attributes:
          label: Concrete Use Cases
          description: Please provide use cases that actually came up in the real world.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/networking.adoc

    systemProp.socksProxyPort=1080
    systemProp.java.net.socks.username=userid
    systemProp.java.net.socks.password=password
    ----
    ====
    
    You may need to set other properties to access other networks.
    
    Helpful references:
    
    * link:https://github.com/apache/ant/blob/master/src/main/org/apache/tools/ant/util/ProxySetup.java[ProxySetup.java in the Ant codebase^]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top